ResourceManager
Namespace: KnowledgeBank.Data
Assembly: backend.dll
This class is responsible for all database interactions regarding resources and their metadata.
Author: Abel Dieterich
public class ResourceManagerInheritance
Show Inherited Members (7)
Constructors
ResourceManager(DatabaseContext)
This class is responsible for all database interactions regarding resources and their metadata.
Author: Abel Dieterich
public ResourceManager(DatabaseContext dbContext)Parameters
| Name | Type | Description |
|---|---|---|
| dbContext | DatabaseContext | The database context variable |
Methods
AddAudioMetadataToResourceAsync(Guid)
public Task AddAudioMetadataToResourceAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
| Type |
|---|
Task |
AddAudioMetadataToResourceAsync(string)
public Task AddAudioMetadataToResourceAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
| Type |
|---|
Task |
AddAuthorToResourceAsync(Guid, Guid)
Adds a person as an author to a resource.
<example> For example: <pre><code class="lang-csharp">await AddAuthorToResourceAsync(exampleResourceId, examplePersonId);</code></pre> </example>
public Task AddAuthorToResourceAsync(Guid resourceId, Guid personId)Parameters
Returns
| Type |
|---|
Task |
AddAuthorToResourceAsync(Guid, string)
public Task AddAuthorToResourceAsync(Guid resourceId, string personId)Parameters
Returns
| Type |
|---|
Task |
AddAuthorToResourceAsync(string, Guid)
public Task AddAuthorToResourceAsync(string resourceId, Guid personId)Parameters
Returns
| Type |
|---|
Task |
AddAuthorToResourceAsync(string, string)
public Task AddAuthorToResourceAsync(string resourceId, string personId)Parameters
Returns
| Type |
|---|
Task |
AddAuthorToResourceRangeAsync(Guid, Guid[])
public Task AddAuthorToResourceRangeAsync(Guid resourceId, Guid[] personIds)Parameters
Returns
| Type |
|---|
Task |
AddAuthorToResourceRangeAsync(Guid, string[])
public Task AddAuthorToResourceRangeAsync(Guid resourceId, string[] personIds)Parameters
Returns
| Type |
|---|
Task |
AddAuthorToResourceRangeAsync(string, Guid[])
public Task AddAuthorToResourceRangeAsync(string resourceId, Guid[] personIds)Parameters
Returns
| Type |
|---|
Task |
AddAuthorToResourceRangeAsync(string, string[])
public Task AddAuthorToResourceRangeAsync(string resourceId, string[] personIds)Parameters
Returns
| Type |
|---|
Task |
AddDocumentMetadataToResourceAsync(Guid)
public Task AddDocumentMetadataToResourceAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
| Type |
|---|
Task |
AddDocumentMetadataToResourceAsync(string)
public Task AddDocumentMetadataToResourceAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
| Type |
|---|
Task |
AddOrganisationRelationshipAsync(string, Guid[])
public Task AddOrganisationRelationshipAsync(string sourceOrganisationId, Guid[] targetOrganisationIds)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationRelationshipAsync(Guid, string[])
public Task AddOrganisationRelationshipAsync(Guid sourceOrganisationId, string[] targetOrganisationIds)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationRelationshipAsync(string, string[])
public Task AddOrganisationRelationshipAsync(string sourceOrganisationId, string[] targetOrganisationIds)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationRelationshipAsync(Guid, string?, Guid)
public Task AddOrganisationRelationshipAsync(Guid sourceOrganisationId, string? relation, Guid targetOrganisationId)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationRelationshipAsync(string, string?, Guid)
public Task AddOrganisationRelationshipAsync(string sourceOrganisationId, string? relation, Guid targetOrganisationId)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationRelationshipAsync(Guid, string?, string)
public Task AddOrganisationRelationshipAsync(Guid sourceOrganisationId, string? relation, string targetOrganistationId)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationRelationshipAsync(string, string?, string)
public Task AddOrganisationRelationshipAsync(string sourceOrganisationId, string? relation, string targetOrganisationId)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationRelationshipAsync(Guid, Guid)
public Task AddOrganisationRelationshipAsync(Guid sourceOrganisationId, Guid targetOrganisationId)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationRelationshipAsync(string, Guid)
public Task AddOrganisationRelationshipAsync(string sourceOrganisationId, Guid targetOrganisationId)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationRelationshipAsync(Guid, string)
public Task AddOrganisationRelationshipAsync(Guid sourceOrganisationId, string targetOrganistationId)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationRelationshipAsync(string, string)
public Task AddOrganisationRelationshipAsync(string sourceOrganisationId, string targetOrganisationId)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationRelationshipRangeAsync(Guid, string?[], Guid[])
public Task AddOrganisationRelationshipRangeAsync(Guid sourceOrganisationId, string?[] relations, Guid[] targetOrganisationIds)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationRelationshipRangeAsync(string, string?[], Guid[])
public Task AddOrganisationRelationshipRangeAsync(string sourceOrganisationId, string?[] relations, Guid[] targetOrganisationIds)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationRelationshipRangeAsync(Guid, string?[], string[])
public Task AddOrganisationRelationshipRangeAsync(Guid sourceOrganisationId, string?[] relations, string[] targetOrganisationIds)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationRelationshipRangeAsync(string, string?[], string[])
public Task AddOrganisationRelationshipRangeAsync(string sourceOrganisationId, string?[] relations, string[] targetOrganisationIds)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationRelationshipRangeAsync(Guid, Guid[])
public Task AddOrganisationRelationshipRangeAsync(Guid sourceOrganisationId, Guid[] targetOrganisationIds)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationToResourceAsync(Guid, Guid)
public Task AddOrganisationToResourceAsync(Guid resourceId, Guid organisationId)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationToResourceAsync(Guid, string)
public Task AddOrganisationToResourceAsync(Guid resourceId, string organisationId)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationToResourceAsync(string, Guid)
public Task AddOrganisationToResourceAsync(string resourceId, Guid organisationId)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationToResourceAsync(string, string)
public Task AddOrganisationToResourceAsync(string resourceId, string organisationId)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationToResourceAsync(Guid, Guid, string)
public Task AddOrganisationToResourceAsync(Guid resourceId, Guid organisationId, string role)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationToResourceAsync(Guid, string, string)
public Task AddOrganisationToResourceAsync(Guid resourceId, string organisationId, string role)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationToResourceAsync(string, Guid, string)
public Task AddOrganisationToResourceAsync(string resourceId, Guid organisationId, string role)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationToResourceAsync(string, string, string)
public Task AddOrganisationToResourceAsync(string resourceId, string organisationId, string role)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationToResourceRangeAsync(Guid, Guid[], string?[])
public Task AddOrganisationToResourceRangeAsync(Guid resourceId, Guid[] organisationIds, string?[] roles)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationToResourceRangeAsync(Guid, string[], string?[])
public Task AddOrganisationToResourceRangeAsync(Guid resourceId, string[] organisationIds, string?[] roles)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationToResourceRangeAsync(string, Guid[], string?[])
public Task AddOrganisationToResourceRangeAsync(string resourceId, Guid[] organisationIds, string?[] roles)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationToResourceRangeAsync(string, string[], string?[])
public Task AddOrganisationToResourceRangeAsync(string resourceId, string[] organisationIds, string?[] roles)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationToResourceRangeAsync(Guid, Guid[])
public Task AddOrganisationToResourceRangeAsync(Guid resourceId, Guid[] organisationIds)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationToResourceRangeAsync(Guid, string[])
public Task AddOrganisationToResourceRangeAsync(Guid resourceId, string[] organisationIds)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationToResourceRangeAsync(string, Guid[])
public Task AddOrganisationToResourceRangeAsync(string resourceId, Guid[] organisationIds)Parameters
Returns
| Type |
|---|
Task |
AddOrganisationToResourceRangeAsync(string, string[])
public Task AddOrganisationToResourceRangeAsync(string resourceId, string[] organisationIds)Parameters
Returns
| Type |
|---|
Task |
AddPersonRelationshipAsync(Guid, string?, Guid)
public Task AddPersonRelationshipAsync(Guid sourcePersonId, string? relation, Guid targetPersonId)Parameters
Returns
| Type |
|---|
Task |
AddPersonRelationshipAsync(string, string?, Guid)
public Task AddPersonRelationshipAsync(string sourcePersonId, string? relation, Guid targetPersonId)Parameters
Returns
| Type |
|---|
Task |
AddPersonRelationshipAsync(Guid, string?, string)
public Task AddPersonRelationshipAsync(Guid sourcePersonId, string? relation, string targetOrganistationId)Parameters
Returns
| Type |
|---|
Task |
AddPersonRelationshipAsync(string, string?, string)
public Task AddPersonRelationshipAsync(string sourcePersonId, string? relation, string targetPersonId)Parameters
Returns
| Type |
|---|
Task |
AddPersonRelationshipAsync(Guid, Guid)
public Task AddPersonRelationshipAsync(Guid sourcePersonId, Guid targetPersonId)Parameters
Returns
| Type |
|---|
Task |
AddPersonRelationshipAsync(string, Guid)
public Task AddPersonRelationshipAsync(string sourcePersonId, Guid targetPersonId)Parameters
Returns
| Type |
|---|
Task |
AddPersonRelationshipAsync(Guid, string)
public Task AddPersonRelationshipAsync(Guid sourcePersonId, string targetOrganistationId)Parameters
Returns
| Type |
|---|
Task |
AddPersonRelationshipAsync(string, string)
public Task AddPersonRelationshipAsync(string sourcePersonId, string targetPersonId)Parameters
Returns
| Type |
|---|
Task |
AddPersonRelationshipRangeAsync(Guid, string?[], Guid[])
public Task AddPersonRelationshipRangeAsync(Guid sourcePersonId, string?[] relations, Guid[] targetPersonIds)Parameters
Returns
| Type |
|---|
Task |
AddPersonRelationshipRangeAsync(string, string?[], Guid[])
public Task AddPersonRelationshipRangeAsync(string sourcePersonId, string?[] relations, Guid[] targetPersonIds)Parameters
Returns
| Type |
|---|
Task |
AddPersonRelationshipRangeAsync(Guid, string?[], string[])
public Task AddPersonRelationshipRangeAsync(Guid sourcePersonId, string?[] relations, string[] targetOrganistationIds)Parameters
Returns
| Type |
|---|
Task |
AddPersonRelationshipRangeAsync(string, string?[], string[])
public Task AddPersonRelationshipRangeAsync(string sourcePersonId, string?[] relations, string[] targetPersonIds)Parameters
Returns
| Type |
|---|
Task |
AddPersonRelationshipRangeAsync(Guid, Guid[])
public Task AddPersonRelationshipRangeAsync(Guid sourcePersonId, Guid[] targetPersonIds)Parameters
Returns
| Type |
|---|
Task |
AddPersonRelationshipRangeAsync(string, Guid[])
public Task AddPersonRelationshipRangeAsync(string sourcePersonId, Guid[] targetPersonIds)Parameters
Returns
| Type |
|---|
Task |
AddPersonRelationshipRangeAsync(Guid, string[])
public Task AddPersonRelationshipRangeAsync(Guid sourcePersonId, string[] targetOrganistationIds)Parameters
Returns
| Type |
|---|
Task |
AddPersonRelationshipRangeAsync(string, string[])
public Task AddPersonRelationshipRangeAsync(string sourcePersonId, string[] targetPersonIds)Parameters
Returns
| Type |
|---|
Task |
AddPersonToOrganisationAsync(Guid, string?, Guid)
public Task AddPersonToOrganisationAsync(Guid personId, string? role, Guid organisationId)Parameters
Returns
| Type |
|---|
Task |
AddPersonToOrganisationAsync(string, string?, Guid)
public Task AddPersonToOrganisationAsync(string personId, string? role, Guid organisationId)Parameters
Returns
| Type |
|---|
Task |
AddPersonToOrganisationAsync(Guid, string?, string)
public Task AddPersonToOrganisationAsync(Guid personId, string? role, string organisationId)Parameters
Returns
| Type |
|---|
Task |
AddPersonToOrganisationAsync(string, string?, string)
public Task AddPersonToOrganisationAsync(string personId, string? role, string organisationId)Parameters
Returns
| Type |
|---|
Task |
AddPersonToOrganisationAsync(Guid, Guid)
public Task AddPersonToOrganisationAsync(Guid personId, Guid organisationId)Parameters
Returns
| Type |
|---|
Task |
AddPersonToOrganisationAsync(string, Guid)
public Task AddPersonToOrganisationAsync(string personId, Guid organisationId)Parameters
Returns
| Type |
|---|
Task |
AddPersonToOrganisationAsync(Guid, string)
public Task AddPersonToOrganisationAsync(Guid personId, string organisationId)Parameters
Returns
| Type |
|---|
Task |
AddPersonToOrganisationAsync(string, string)
public Task AddPersonToOrganisationAsync(string personId, string organisationId)Parameters
Returns
| Type |
|---|
Task |
AddPersonToOrganisationRangeAsync(Guid, string?[], Guid[])
public Task AddPersonToOrganisationRangeAsync(Guid personId, string?[] roles, Guid[] organisationIds)Parameters
Returns
| Type |
|---|
Task |
AddPersonToOrganisationRangeAsync(string, string?[], Guid[])
public Task AddPersonToOrganisationRangeAsync(string personId, string?[] roles, Guid[] organisationIds)Parameters
Returns
| Type |
|---|
Task |
AddPersonToOrganisationRangeAsync(Guid, string?[], string[])
public Task AddPersonToOrganisationRangeAsync(Guid personId, string?[] roles, string[] organisationIds)Parameters
Returns
| Type |
|---|
Task |
AddPersonToOrganisationRangeAsync(string, string?[], string[])
public Task AddPersonToOrganisationRangeAsync(string personId, string?[] roles, string[] organisationIds)Parameters
Returns
| Type |
|---|
Task |
AddPersonToOrganisationRangeAsync(Guid, Guid[])
public Task AddPersonToOrganisationRangeAsync(Guid personId, Guid[] organisationIds)Parameters
Returns
| Type |
|---|
Task |
AddPersonToOrganisationRangeAsync(string, Guid[])
public Task AddPersonToOrganisationRangeAsync(string personId, Guid[] organisationIds)Parameters
Returns
| Type |
|---|
Task |
AddPersonToOrganisationRangeAsync(Guid, string[])
public Task AddPersonToOrganisationRangeAsync(Guid personId, string[] organisationIds)Parameters
Returns
| Type |
|---|
Task |
AddPersonToOrganisationRangeAsync(string, string[])
public Task AddPersonToOrganisationRangeAsync(string personId, string[] organisationIds)Parameters
Returns
| Type |
|---|
Task |
AddRegionToResourceAsync(Guid, Guid)
public Task AddRegionToResourceAsync(Guid resourceId, Guid regionIds)Parameters
Returns
| Type |
|---|
Task |
AddRegionToResourceAsync(Guid, string)
public Task AddRegionToResourceAsync(Guid resourceId, string regionIds)Parameters
Returns
| Type |
|---|
Task |
AddRegionToResourceAsync(string, Guid)
public Task AddRegionToResourceAsync(string resourceId, Guid regionIds)Parameters
Returns
| Type |
|---|
Task |
AddRegionToResourceAsync(string, string)
public Task AddRegionToResourceAsync(string resourceId, string regionIds)Parameters
Returns
| Type |
|---|
Task |
AddRegionToResourceRangeAsync(Guid, Guid[])
public Task AddRegionToResourceRangeAsync(Guid resourceId, Guid[] regionIds)Parameters
Returns
| Type |
|---|
Task |
AddRegionToResourceRangeAsync(Guid, string[])
public Task AddRegionToResourceRangeAsync(Guid resourceId, string[] regionIds)Parameters
Returns
| Type |
|---|
Task |
AddRegionToResourceRangeAsync(string, Guid[])
public Task AddRegionToResourceRangeAsync(string resourceId, Guid[] regionIds)Parameters
Returns
| Type |
|---|
Task |
AddRegionToResourceRangeAsync(string, string[])
public Task AddRegionToResourceRangeAsync(string resourceId, string[] regionIds)Parameters
Returns
| Type |
|---|
Task |
AddRelatedOrganisationToResourceAsync(Guid, Guid)
public Task AddRelatedOrganisationToResourceAsync(Guid resourceId, Guid organisationId)Parameters
Returns
| Type |
|---|
Task |
AddRelatedOrganisationToResourceAsync(Guid, string)
public Task AddRelatedOrganisationToResourceAsync(Guid resourceId, string organisationId)Parameters
Returns
| Type |
|---|
Task |
AddRelatedOrganisationToResourceAsync(string, Guid)
public Task AddRelatedOrganisationToResourceAsync(string resourceId, Guid organisationId)Parameters
Returns
| Type |
|---|
Task |
AddRelatedOrganisationToResourceAsync(string, string)
public Task AddRelatedOrganisationToResourceAsync(string resourceId, string organisationId)Parameters
Returns
| Type |
|---|
Task |
AddRelatedOrganisationToResourceAsync(Guid, Guid, string)
public Task AddRelatedOrganisationToResourceAsync(Guid resourceId, Guid organisationId, string role)Parameters
Returns
| Type |
|---|
Task |
AddRelatedOrganisationToResourceAsync(Guid, string, string)
public Task AddRelatedOrganisationToResourceAsync(Guid resourceId, string organisationId, string role)Parameters
Returns
| Type |
|---|
Task |
AddRelatedOrganisationToResourceAsync(string, Guid, string)
public Task AddRelatedOrganisationToResourceAsync(string resourceId, Guid organisationId, string role)Parameters
Returns
| Type |
|---|
Task |
AddRelatedOrganisationToResourceAsync(string, string, string)
public Task AddRelatedOrganisationToResourceAsync(string resourceId, string organisationId, string role)Parameters
Returns
| Type |
|---|
Task |
AddRelatedOrganisationToResourceRangeAsync(Guid, Guid[], string?[])
public Task AddRelatedOrganisationToResourceRangeAsync(Guid resourceId, Guid[] organisationIds, string?[] roles)Parameters
Returns
| Type |
|---|
Task |
AddRelatedOrganisationToResourceRangeAsync(Guid, string[], string?[])
public Task AddRelatedOrganisationToResourceRangeAsync(Guid resourceId, string[] organisationIds, string?[] roles)Parameters
Returns
| Type |
|---|
Task |
AddRelatedOrganisationToResourceRangeAsync(string, Guid[], string?[])
public Task AddRelatedOrganisationToResourceRangeAsync(string resourceId, Guid[] organisationIds, string?[] roles)Parameters
Returns
| Type |
|---|
Task |
AddRelatedOrganisationToResourceRangeAsync(string, string[], string?[])
public Task AddRelatedOrganisationToResourceRangeAsync(string resourceId, string[] organisationIds, string?[] roles)Parameters
Returns
| Type |
|---|
Task |
AddRelatedOrganisationToResourceRangeAsync(Guid, Guid[])
public Task AddRelatedOrganisationToResourceRangeAsync(Guid resourceId, Guid[] organisationIds)Parameters
Returns
| Type |
|---|
Task |
AddRelatedOrganisationToResourceRangeAsync(Guid, string[])
public Task AddRelatedOrganisationToResourceRangeAsync(Guid resourceId, string[] organisationIds)Parameters
Returns
| Type |
|---|
Task |
AddRelatedOrganisationToResourceRangeAsync(string, Guid[])
public Task AddRelatedOrganisationToResourceRangeAsync(string resourceId, Guid[] organisationIds)Parameters
Returns
| Type |
|---|
Task |
AddRelatedOrganisationToResourceRangeAsync(string, string[])
public Task AddRelatedOrganisationToResourceRangeAsync(string resourceId, string[] organisationIds)Parameters
Returns
| Type |
|---|
Task |
AddRelatedPersonToResourceAsync(Guid, Guid, string?)
public Task AddRelatedPersonToResourceAsync(Guid resourceId, Guid personId, string? role)Parameters
Returns
| Type |
|---|
Task |
AddRelatedPersonToResourceAsync(Guid, string, string?)
public Task AddRelatedPersonToResourceAsync(Guid resourceId, string personId, string? role)Parameters
Returns
| Type |
|---|
Task |
AddRelatedPersonToResourceAsync(string, Guid, string?)
public Task AddRelatedPersonToResourceAsync(string resourceId, Guid personId, string? role)Parameters
Returns
| Type |
|---|
Task |
AddRelatedPersonToResourceAsync(string, string, string?)
public Task AddRelatedPersonToResourceAsync(string resourceId, string personId, string? role)Parameters
Returns
| Type |
|---|
Task |
AddRelatedPersonToResourceAsync(Guid, Guid)
public Task AddRelatedPersonToResourceAsync(Guid resourceId, Guid personId)Parameters
Returns
| Type |
|---|
Task |
AddRelatedPersonToResourceAsync(Guid, string)
public Task AddRelatedPersonToResourceAsync(Guid resourceId, string personId)Parameters
Returns
| Type |
|---|
Task |
AddRelatedPersonToResourceAsync(string, Guid)
public Task AddRelatedPersonToResourceAsync(string resourceId, Guid personId)Parameters
Returns
| Type |
|---|
Task |
AddRelatedPersonToResourceAsync(string, string)
public Task AddRelatedPersonToResourceAsync(string resourceId, string personId)Parameters
Returns
| Type |
|---|
Task |
AddRelatedPersonToResourceRangeAsync(Guid, Guid[], string?[])
public Task AddRelatedPersonToResourceRangeAsync(Guid resourceId, Guid[] personIds, string?[] roles)Parameters
Returns
| Type |
|---|
Task |
AddRelatedPersonToResourceRangeAsync(Guid, string[], string?[])
public Task AddRelatedPersonToResourceRangeAsync(Guid resourceId, string[] personIds, string?[] roles)Parameters
Returns
| Type |
|---|
Task |
AddRelatedPersonToResourceRangeAsync(string, Guid[], string?[])
public Task AddRelatedPersonToResourceRangeAsync(string resourceId, Guid[] personIds, string?[] roles)Parameters
Returns
| Type |
|---|
Task |
AddRelatedPersonToResourceRangeAsync(string, string[], string?[])
public Task AddRelatedPersonToResourceRangeAsync(string resourceId, string[] personIds, string?[] roles)Parameters
Returns
| Type |
|---|
Task |
AddRelatedPersonToResourceRangeAsync(Guid, Guid[])
public Task AddRelatedPersonToResourceRangeAsync(Guid resourceId, Guid[] personIds)Parameters
Returns
| Type |
|---|
Task |
AddRelatedPersonToResourceRangeAsync(Guid, string[])
public Task AddRelatedPersonToResourceRangeAsync(Guid resourceId, string[] personIds)Parameters
Returns
| Type |
|---|
Task |
AddRelatedPersonToResourceRangeAsync(string, Guid[])
public Task AddRelatedPersonToResourceRangeAsync(string resourceId, Guid[] personIds)Parameters
Returns
| Type |
|---|
Task |
AddRelatedPersonToResourceRangeAsync(string, string[])
public Task AddRelatedPersonToResourceRangeAsync(string resourceId, string[] personIds)Parameters
Returns
| Type |
|---|
Task |
AddRelatedSourceToResourceAsync(Guid, string)
public Task AddRelatedSourceToResourceAsync(Guid resourceId, string url)Parameters
Returns
| Type |
|---|
Task |
AddRelatedSourceToResourceAsync(string, string)
public Task AddRelatedSourceToResourceAsync(string resourceId, string url)Parameters
Returns
| Type |
|---|
Task |
AddRelatedSourceToResourceRangeAsync(Guid, string[])
public Task AddRelatedSourceToResourceRangeAsync(Guid resourceId, string[] urls)Parameters
Returns
| Type |
|---|
Task |
AddRelatedSourceToResourceRangeAsync(string, string[])
public Task AddRelatedSourceToResourceRangeAsync(string resourceId, string[] urls)Parameters
Returns
| Type |
|---|
Task |
AddResourceTypeToResourceAsync(Guid, Guid)
public Task AddResourceTypeToResourceAsync(Guid resourceId, Guid resourceTypeId)Parameters
Returns
| Type |
|---|
Task |
AddResourceTypeToResourceAsync(Guid, string)
public Task AddResourceTypeToResourceAsync(Guid resourceId, string resourceTypeId)Parameters
Returns
| Type |
|---|
Task |
AddResourceTypeToResourceAsync(string, Guid)
public Task AddResourceTypeToResourceAsync(string resourceId, Guid resourceTypeId)Parameters
Returns
| Type |
|---|
Task |
AddResourceTypeToResourceAsync(string, string)
public Task AddResourceTypeToResourceAsync(string resourceId, string resourceTypeId)Parameters
Returns
| Type |
|---|
Task |
AddSourceToResourceAsync(Guid, string)
public Task AddSourceToResourceAsync(Guid resourceId, string sourceUrl)Parameters
Returns
| Type |
|---|
Task |
AddSourceToResourceAsync(string, string)
public Task AddSourceToResourceAsync(string resourceId, string sourceUrl)Parameters
Returns
| Type |
|---|
Task |
AddSourceToResourceRangeAsync(Guid, string[])
public Task AddSourceToResourceRangeAsync(Guid resourceId, string[] sourceUrls)Parameters
Returns
| Type |
|---|
Task |
AddSourceToResourceRangeAsync(string, string[])
public Task AddSourceToResourceRangeAsync(string resourceId, string[] sourceUrls)Parameters
Returns
| Type |
|---|
Task |
AddTagToResourceAsync(Guid, Guid)
public Task AddTagToResourceAsync(Guid resourceId, Guid tagId)Parameters
Returns
| Type |
|---|
Task |
AddTagToResourceAsync(string, Guid)
public Task AddTagToResourceAsync(string resourceId, Guid tagId)Parameters
Returns
| Type |
|---|
Task |
AddTagToResourceAsync(Guid, string)
public Task AddTagToResourceAsync(Guid resourceId, string tagId)Parameters
Returns
| Type |
|---|
Task |
AddTagToResourceAsync(string, string)
public Task AddTagToResourceAsync(string resourceId, string tagId)Parameters
Returns
| Type |
|---|
Task |
AddTagToResourceRangeAsync(Guid, Guid[])
public Task AddTagToResourceRangeAsync(Guid resourceId, Guid[] tagIds)Parameters
Returns
| Type |
|---|
Task |
AddTagToResourceRangeAsync(Guid, string[])
public Task AddTagToResourceRangeAsync(Guid resourceId, string[] tagIds)Parameters
Returns
| Type |
|---|
Task |
AddTagToResourceRangeAsync(string, Guid[])
public Task AddTagToResourceRangeAsync(string resourceId, Guid[] tagIds)Parameters
Returns
| Type |
|---|
Task |
AddTagToResourceRangeAsync(string, string[])
public Task AddTagToResourceRangeAsync(string resourceId, string[] tagIds)Parameters
Returns
| Type |
|---|
Task |
AddVideoMetadataToResourceAsync(Guid)
public Task AddVideoMetadataToResourceAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
| Type |
|---|
Task |
AddVideoMetadataToResourceAsync(string)
public Task AddVideoMetadataToResourceAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
| Type |
|---|
Task |
AddWebsiteMetadataToResourceAsync(Guid, string)
public Task AddWebsiteMetadataToResourceAsync(Guid resourceId, string url)Parameters
Returns
| Type |
|---|
Task |
AddWebsiteMetadataToResourceAsync(string, string)
public Task AddWebsiteMetadataToResourceAsync(string resourceId, string url)Parameters
Returns
| Type |
|---|
Task |
AudioMetadataCountAsync(Expression<Func<AudioMetadata, bool>>?)
public Task<int> AudioMetadataCountAsync(Expression<Func<AudioMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, AudioMetadata> |
Returns
AudioMetadataExistsAsync(Guid)
public Task<bool> AudioMetadataExistsAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
AudioMetadataExistsAsync(string)
public Task<bool> AudioMetadataExistsAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
AudioMetadataExistsAsync(Expression<Func<AudioMetadata, bool>>)
public Task<bool> AudioMetadataExistsAsync(Expression<Func<AudioMetadata, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, AudioMetadata> |
Returns
BeginTransaction()
Starts a database transaction
public Task<bool> BeginTransaction()Returns
| Type | Description |
|---|---|
Task<bool> | If the transaction was started or not (if false, there was already a transaction running) |
Commit()
Commits the current database transaction
public Task Commit()Returns
| Type |
|---|
Task |
CreateAudioAsync(AudioCreateDto)
public Task<Guid> CreateAudioAsync(AudioCreateDto dto)Parameters
| Name | Type |
|---|---|
| dto | AudioCreateDto |
Returns
CreateDocumentAsync(DocumentCreateDto)
public Task<Guid> CreateDocumentAsync(DocumentCreateDto dto)Parameters
| Name | Type |
|---|---|
| dto | DocumentCreateDto |
Returns
CreateOrganisationAsync(OrganisationCreateDto)
public Task<Guid> CreateOrganisationAsync(OrganisationCreateDto dto)Parameters
| Name | Type |
|---|---|
| dto | OrganisationCreateDto |
Returns
CreatePersonAsync(PersonCreateDto)
public Task<Guid> CreatePersonAsync(PersonCreateDto dto)Parameters
| Name | Type |
|---|---|
| dto | PersonCreateDto |
Returns
CreateRegionAsync(RegionCreateDto)
public Task<Guid> CreateRegionAsync(RegionCreateDto dto)Parameters
| Name | Type |
|---|---|
| dto | RegionCreateDto |
Returns
CreateResourceAsync(ResourceCreateDto)
public Task<Guid> CreateResourceAsync(ResourceCreateDto dto)Parameters
| Name | Type |
|---|---|
| dto | ResourceCreateDto |
Returns
CreateResourceTypeAsync(ResourceTypeCreateDto)
public Task<Guid> CreateResourceTypeAsync(ResourceTypeCreateDto dto)Parameters
| Name | Type |
|---|---|
| dto | ResourceTypeCreateDto |
Returns
CreateTagAsync(TagCreateDto, bool)
public Task<Guid> CreateTagAsync(TagCreateDto dto, bool isStandardized = false)Parameters
| Name | Type |
|---|---|
| dto | TagCreateDto |
| isStandardized | bool |
Returns
CreateVideoAsync(VideoCreateDto)
public Task<Guid> CreateVideoAsync(VideoCreateDto dto)Parameters
| Name | Type |
|---|---|
| dto | VideoCreateDto |
Returns
CreateWebsiteAsync(WebsiteCreateDto)
public Task<Guid> CreateWebsiteAsync(WebsiteCreateDto dto)Parameters
| Name | Type |
|---|---|
| dto | WebsiteCreateDto |
Returns
DeleteAllWhereAsync<T>(DbSet<T>, Expression<Func<T, bool>>)
protected Task<int> DeleteAllWhereAsync<T>(DbSet<T> dbSet, Expression<Func<T, bool>> predicate) where T : classParameters
| Name | Type |
|---|---|
| dbSet | DbSet |
| predicate | Expression<Func, bool> |
Returns
Type Parameters
T
DeleteAsync<T>(DbSet<T>, Expression<Func<T, bool>>)
protected Task<int> DeleteAsync<T>(DbSet<T> dbSet, Expression<Func<T, bool>> predicate) where T : classParameters
| Name | Type |
|---|---|
| dbSet | DbSet |
| predicate | Expression<Func, bool> |
Returns
Type Parameters
T
DeleteAudioMetadataAsync(Guid)
public Task<bool> DeleteAudioMetadataAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
DeleteAudioMetadataAsync(string)
public Task<bool> DeleteAudioMetadataAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
DeleteDocumentMetadataAsync(Guid)
public Task<bool> DeleteDocumentMetadataAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
DeleteDocumentMetadataAsync(string)
public Task<bool> DeleteDocumentMetadataAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
DeleteOrganisationAsync(Guid)
public Task<bool> DeleteOrganisationAsync(Guid id)Parameters
| Name | Type |
|---|---|
| id | Guid |
Returns
DeleteOrganisationAsync(string)
public Task<bool> DeleteOrganisationAsync(string id)Parameters
| Name | Type |
|---|---|
| id | string |
Returns
DeletePersonAsync(Guid)
public Task<bool> DeletePersonAsync(Guid id)Parameters
| Name | Type |
|---|---|
| id | Guid |
Returns
DeletePersonAsync(string)
public Task<bool> DeletePersonAsync(string id)Parameters
| Name | Type |
|---|---|
| id | string |
Returns
DeleteRegionAsync(Guid)
public Task<bool> DeleteRegionAsync(Guid id)Parameters
| Name | Type |
|---|---|
| id | Guid |
Returns
DeleteRegionAsync(string)
public Task<bool> DeleteRegionAsync(string id)Parameters
| Name | Type |
|---|---|
| id | string |
Returns
DeleteResourceAsync(Guid)
public Task<bool> DeleteResourceAsync(Guid id)Parameters
| Name | Type |
|---|---|
| id | Guid |
Returns
DeleteResourceAsync(string)
public Task<bool> DeleteResourceAsync(string id)Parameters
| Name | Type |
|---|---|
| id | string |
Returns
DeleteResourceTypeAsync(Guid)
public Task<bool> DeleteResourceTypeAsync(Guid id)Parameters
| Name | Type |
|---|---|
| id | Guid |
Returns
DeleteResourceTypeAsync(string)
public Task<bool> DeleteResourceTypeAsync(string id)Parameters
| Name | Type |
|---|---|
| id | string |
Returns
DeleteTagAsync(Guid)
public Task<bool> DeleteTagAsync(Guid id)Parameters
| Name | Type |
|---|---|
| id | Guid |
Returns
DeleteTagAsync(string)
public Task<bool> DeleteTagAsync(string id)Parameters
| Name | Type |
|---|---|
| id | string |
Returns
DeleteVideoMetadataAsync(Guid)
public Task<bool> DeleteVideoMetadataAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
DeleteVideoMetadataAsync(string)
public Task<bool> DeleteVideoMetadataAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
DeleteWebsiteMetadataAsync(Guid)
public Task<bool> DeleteWebsiteMetadataAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
DeleteWebsiteMetadataAsync(string)
public Task<bool> DeleteWebsiteMetadataAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
DocumentMetadataCountAsync(Expression<Func<DocumentMetadata, bool>>?)
public Task<int> DocumentMetadataCountAsync(Expression<Func<DocumentMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, DocumentMetadata> |
Returns
DocumentMetadataExistsAsync(Guid)
public Task<bool> DocumentMetadataExistsAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
DocumentMetadataExistsAsync(string)
public Task<bool> DocumentMetadataExistsAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
DocumentMetadataExistsAsync(Expression<Func<DocumentMetadata, bool>>)
public Task<bool> DocumentMetadataExistsAsync(Expression<Func<DocumentMetadata, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, DocumentMetadata> |
Returns
ExistsAsync<T>(DbSet<T>, Expression<Func<T, bool>>)
protected Task<bool> ExistsAsync<T>(DbSet<T> dbSet, Expression<Func<T, bool>> predicate) where T : classParameters
| Name | Type |
|---|---|
| dbSet | DbSet |
| predicate | Expression<Func, bool> |
Returns
Type Parameters
T
GetAllAsync<T>(DbSet<T>, Expression<Func<T, dynamic>>?, bool, Expression<Func<T, bool>>?, params string[])
protected Task<T[]> GetAllAsync<T>(DbSet<T> dbSet, Expression<Func<T, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<T, bool>>? predicate = null, params string[] includeProperties) where T : classParameters
| Name | Type |
|---|---|
| dbSet | DbSet |
| orderBy | Expression<Func> |
| orderDescending | bool |
| predicate | Expression<Func, bool> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
Type Parameters
T
GetAllAsync<TSet>(DbSet<TSet>, string, Expression<Func<TSet, dynamic>>?, bool, Expression<Func<TSet, bool>>?, params string[])
protected Task<dynamic[]> GetAllAsync<TSet>(DbSet<TSet> dbSet, string projection, Expression<Func<TSet, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<TSet, bool>>? predicate = null, params string[] includeProperties) where TSet : classParameters
| Name | Type |
|---|---|
| dbSet | DbSet |
| projection | string |
| orderBy | Expression<Func> |
| orderDescending | bool |
| predicate | Expression<Func, bool> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
Type Parameters
TSet
GetAllAudioMetadatasAsync(Expression<Func<AudioMetadata, dynamic>>?, bool, Expression<Func<AudioMetadata, bool>>?)
public Task<AudioMetadata[]> GetAllAudioMetadatasAsync(Expression<Func<AudioMetadata, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<AudioMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, AudioMetadata> |
| orderDescending | bool |
| predicate | Expression<Func, bool, AudioMetadata> |
Returns
| Type |
|---|
Task<AudioMetadata>[] |
GetAllAudioMetadatasAsync(Expression<Func<AudioMetadata, bool>>?, params string[])
public Task<AudioMetadata[]> GetAllAudioMetadatasAsync(Expression<Func<AudioMetadata, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, AudioMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task<AudioMetadata>[] |
GetAllAudioMetadatasAsync(Expression<Func<AudioMetadata, dynamic>>?, bool, params string[])
public Task<AudioMetadata[]> GetAllAudioMetadatasAsync(Expression<Func<AudioMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, AudioMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<AudioMetadata>[] |
GetAllAudioMetadatasAsync(params string[])
public Task<AudioMetadata[]> GetAllAudioMetadatasAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
| Type |
|---|
Task<AudioMetadata>[] |
GetAllAudioMetadatasAsync(string, Expression<Func<AudioMetadata, dynamic>>?, bool, Expression<Func<AudioMetadata, bool>>?)
public Task<dynamic> GetAllAudioMetadatasAsync(string projection, Expression<Func<AudioMetadata, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<AudioMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, AudioMetadata> |
| orderDescending | bool |
| predicate | Expression<Func, bool, AudioMetadata> |
Returns
| Type |
|---|
Task |
GetAllAudioMetadatasAsync(string, Expression<Func<AudioMetadata, bool>>?, params string[])
public Task<dynamic> GetAllAudioMetadatasAsync(string projection, Expression<Func<AudioMetadata, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| predicate | Expression<Func, bool, AudioMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllAudioMetadatasAsync(string, Expression<Func<AudioMetadata, dynamic>>?, bool, params string[])
public Task<dynamic> GetAllAudioMetadatasAsync(string projection, Expression<Func<AudioMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, AudioMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllAudioMetadatasAsync(string, params string[])
public Task<dynamic> GetAllAudioMetadatasAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllDocumentMetadataAsync(Expression<Func<DocumentMetadata, dynamic>>?, bool, Expression<Func<DocumentMetadata, bool>>?)
public Task<DocumentMetadata[]> GetAllDocumentMetadataAsync(Expression<Func<DocumentMetadata, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<DocumentMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, DocumentMetadata> |
| orderDescending | bool |
| predicate | Expression<Func, bool, DocumentMetadata> |
Returns
| Type |
|---|
Task<DocumentMetadata>[] |
GetAllDocumentMetadataAsync(Expression<Func<DocumentMetadata, bool>>?, params string[])
public Task<DocumentMetadata[]> GetAllDocumentMetadataAsync(Expression<Func<DocumentMetadata, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, DocumentMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task<DocumentMetadata>[] |
GetAllDocumentMetadataAsync(Expression<Func<DocumentMetadata, dynamic>>?, bool, params string[])
public Task<DocumentMetadata[]> GetAllDocumentMetadataAsync(Expression<Func<DocumentMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, DocumentMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<DocumentMetadata>[] |
GetAllDocumentMetadataAsync(params string[])
public Task<DocumentMetadata[]> GetAllDocumentMetadataAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
| Type |
|---|
Task<DocumentMetadata>[] |
GetAllDocumentMetadataAsync(string, Expression<Func<DocumentMetadata, dynamic>>?, bool, Expression<Func<DocumentMetadata, bool>>?)
public Task<dynamic> GetAllDocumentMetadataAsync(string projection, Expression<Func<DocumentMetadata, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<DocumentMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, DocumentMetadata> |
| orderDescending | bool |
| predicate | Expression<Func, bool, DocumentMetadata> |
Returns
| Type |
|---|
Task |
GetAllDocumentMetadataAsync(string, Expression<Func<DocumentMetadata, bool>>?, params string[])
public Task<dynamic> GetAllDocumentMetadataAsync(string projection, Expression<Func<DocumentMetadata, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| predicate | Expression<Func, bool, DocumentMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllDocumentMetadataAsync(string, Expression<Func<DocumentMetadata, dynamic>>?, bool, params string[])
public Task<dynamic> GetAllDocumentMetadataAsync(string projection, Expression<Func<DocumentMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, DocumentMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllDocumentMetadataAsync(string, params string[])
public Task<dynamic> GetAllDocumentMetadataAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllOrganisationRelationshipsAsync(Expression<Func<OrganisationRelationship, object>>?, bool, Expression<Func<OrganisationRelationship, bool>>?)
public Task<OrganisationRelationship[]> GetAllOrganisationRelationshipsAsync(Expression<Func<OrganisationRelationship, object>>? orderBy = null, bool orderDescending = true, Expression<Func<OrganisationRelationship, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, OrganisationRelationship> |
| orderDescending | bool |
| predicate | Expression<Func, bool, OrganisationRelationship> |
Returns
| Type |
|---|
Task<OrganisationRelationship>[] |
GetAllOrganisationRelationshipsAsync(Expression<Func<OrganisationRelationship, bool>>?, params string[])
public Task<OrganisationRelationship[]> GetAllOrganisationRelationshipsAsync(Expression<Func<OrganisationRelationship, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, OrganisationRelationship> |
| includeProperties | string |
Returns
| Type |
|---|
Task<OrganisationRelationship>[] |
GetAllOrganisationRelationshipsAsync(Expression<Func<OrganisationRelationship, object>>?, bool, params string[])
public Task<OrganisationRelationship[]> GetAllOrganisationRelationshipsAsync(Expression<Func<OrganisationRelationship, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, OrganisationRelationship> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<OrganisationRelationship>[] |
GetAllOrganisationRelationshipsAsync(params string[])
public Task<OrganisationRelationship[]> GetAllOrganisationRelationshipsAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
| Type |
|---|
Task<OrganisationRelationship>[] |
GetAllOrganisationRelationshipsAsync(string, Expression<Func<OrganisationRelationship, object>>?, bool, Expression<Func<OrganisationRelationship, bool>>?)
public Task<dynamic> GetAllOrganisationRelationshipsAsync(string projection, Expression<Func<OrganisationRelationship, object>>? orderBy = null, bool orderDescending = true, Expression<Func<OrganisationRelationship, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, OrganisationRelationship> |
| orderDescending | bool |
| predicate | Expression<Func, bool, OrganisationRelationship> |
Returns
| Type |
|---|
Task |
GetAllOrganisationRelationshipsAsync(string, Expression<Func<OrganisationRelationship, bool>>?, params string[])
public Task<dynamic> GetAllOrganisationRelationshipsAsync(string projection, Expression<Func<OrganisationRelationship, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| predicate | Expression<Func, bool, OrganisationRelationship> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllOrganisationRelationshipsAsync(string, Expression<Func<OrganisationRelationship, object>>?, bool, params string[])
public Task<dynamic> GetAllOrganisationRelationshipsAsync(string projection, Expression<Func<OrganisationRelationship, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, OrganisationRelationship> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllOrganisationRelationshipsAsync(string, params string[])
public Task<dynamic> GetAllOrganisationRelationshipsAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllOrganisationsAsync(Expression<Func<Organisation, dynamic>>?, bool, Expression<Func<Organisation, bool>>?)
public Task<Organisation[]> GetAllOrganisationsAsync(Expression<Func<Organisation, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<Organisation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, Organisation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Organisation> |
Returns
| Type |
|---|
Task<Organisation>[] |
GetAllOrganisationsAsync(Expression<Func<Organisation, bool>>?, params string[])
public Task<Organisation[]> GetAllOrganisationsAsync(Expression<Func<Organisation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Organisation> |
| includeProperties | string |
Returns
| Type |
|---|
Task<Organisation>[] |
GetAllOrganisationsAsync(Expression<Func<Organisation, dynamic>>?, bool, params string[])
public Task<Organisation[]> GetAllOrganisationsAsync(Expression<Func<Organisation, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, Organisation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<Organisation>[] |
GetAllOrganisationsAsync(params string[])
public Task<Organisation[]> GetAllOrganisationsAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
| Type |
|---|
Task<Organisation>[] |
GetAllOrganisationsAsync(string, Expression<Func<Organisation, dynamic>>?, bool, Expression<Func<Organisation, bool>>?)
public Task<dynamic> GetAllOrganisationsAsync(string projection, Expression<Func<Organisation, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<Organisation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, Organisation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Organisation> |
Returns
| Type |
|---|
Task |
GetAllOrganisationsAsync(string, Expression<Func<Organisation, bool>>?, params string[])
public Task<dynamic> GetAllOrganisationsAsync(string projection, Expression<Func<Organisation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| predicate | Expression<Func, bool, Organisation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllOrganisationsAsync(string, Expression<Func<Organisation, dynamic>>?, bool, params string[])
public Task<dynamic> GetAllOrganisationsAsync(string projection, Expression<Func<Organisation, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, Organisation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllOrganisationsAsync(string, params string[])
public Task<dynamic> GetAllOrganisationsAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllPersonOrganisationRelationsAsync(Expression<Func<PersonOrganisationRelation, object>>?, bool, Expression<Func<PersonOrganisationRelation, bool>>?)
public Task<PersonOrganisationRelation[]> GetAllPersonOrganisationRelationsAsync(Expression<Func<PersonOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<PersonOrganisationRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, PersonOrganisationRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, PersonOrganisationRelation> |
Returns
| Type |
|---|
Task<PersonOrganisationRelation>[] |
GetAllPersonOrganisationRelationsAsync(Expression<Func<PersonOrganisationRelation, bool>>?, params string[])
public Task<PersonOrganisationRelation[]> GetAllPersonOrganisationRelationsAsync(Expression<Func<PersonOrganisationRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, PersonOrganisationRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task<PersonOrganisationRelation>[] |
GetAllPersonOrganisationRelationsAsync(Expression<Func<PersonOrganisationRelation, object>>?, bool, params string[])
public Task<PersonOrganisationRelation[]> GetAllPersonOrganisationRelationsAsync(Expression<Func<PersonOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, PersonOrganisationRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<PersonOrganisationRelation>[] |
GetAllPersonOrganisationRelationsAsync(params string[])
public Task<PersonOrganisationRelation[]> GetAllPersonOrganisationRelationsAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
| Type |
|---|
Task<PersonOrganisationRelation>[] |
GetAllPersonOrganisationRelationsAsync(string, Expression<Func<PersonOrganisationRelation, object>>?, bool, Expression<Func<PersonOrganisationRelation, bool>>?)
public Task<dynamic> GetAllPersonOrganisationRelationsAsync(string projection, Expression<Func<PersonOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<PersonOrganisationRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, PersonOrganisationRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, PersonOrganisationRelation> |
Returns
| Type |
|---|
Task |
GetAllPersonOrganisationRelationsAsync(string, Expression<Func<PersonOrganisationRelation, bool>>?, params string[])
public Task<dynamic> GetAllPersonOrganisationRelationsAsync(string projection, Expression<Func<PersonOrganisationRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| predicate | Expression<Func, bool, PersonOrganisationRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllPersonOrganisationRelationsAsync(string, Expression<Func<PersonOrganisationRelation, object>>?, bool, params string[])
public Task<dynamic> GetAllPersonOrganisationRelationsAsync(string projection, Expression<Func<PersonOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, PersonOrganisationRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllPersonOrganisationRelationsAsync(string, params string[])
public Task<dynamic> GetAllPersonOrganisationRelationsAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllPersonRelationshipsAsync(Expression<Func<PersonRelationship, object>>?, bool, Expression<Func<PersonRelationship, bool>>?)
public Task<PersonRelationship[]> GetAllPersonRelationshipsAsync(Expression<Func<PersonRelationship, object>>? orderBy = null, bool orderDescending = true, Expression<Func<PersonRelationship, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, PersonRelationship> |
| orderDescending | bool |
| predicate | Expression<Func, bool, PersonRelationship> |
Returns
| Type |
|---|
Task<PersonRelationship>[] |
GetAllPersonRelationshipsAsync(Expression<Func<PersonRelationship, bool>>?, params string[])
public Task<PersonRelationship[]> GetAllPersonRelationshipsAsync(Expression<Func<PersonRelationship, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, PersonRelationship> |
| includeProperties | string |
Returns
| Type |
|---|
Task<PersonRelationship>[] |
GetAllPersonRelationshipsAsync(Expression<Func<PersonRelationship, object>>?, bool, params string[])
public Task<PersonRelationship[]> GetAllPersonRelationshipsAsync(Expression<Func<PersonRelationship, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, PersonRelationship> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<PersonRelationship>[] |
GetAllPersonRelationshipsAsync(params string[])
public Task<PersonRelationship[]> GetAllPersonRelationshipsAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
| Type |
|---|
Task<PersonRelationship>[] |
GetAllPersonRelationshipsAsync(string, Expression<Func<PersonRelationship, object>>?, bool, Expression<Func<PersonRelationship, bool>>?)
public Task<dynamic> GetAllPersonRelationshipsAsync(string projection, Expression<Func<PersonRelationship, object>>? orderBy = null, bool orderDescending = true, Expression<Func<PersonRelationship, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, PersonRelationship> |
| orderDescending | bool |
| predicate | Expression<Func, bool, PersonRelationship> |
Returns
| Type |
|---|
Task |
GetAllPersonRelationshipsAsync(string, Expression<Func<PersonRelationship, bool>>?, params string[])
public Task<dynamic> GetAllPersonRelationshipsAsync(string projection, Expression<Func<PersonRelationship, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| predicate | Expression<Func, bool, PersonRelationship> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllPersonRelationshipsAsync(string, Expression<Func<PersonRelationship, object>>?, bool, params string[])
public Task<dynamic> GetAllPersonRelationshipsAsync(string projection, Expression<Func<PersonRelationship, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, PersonRelationship> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllPersonRelationshipsAsync(string, params string[])
public Task<dynamic> GetAllPersonRelationshipsAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllPersonsAsync(Expression<Func<Person, dynamic>>?, bool, Expression<Func<Person, bool>>?)
public Task<Person[]> GetAllPersonsAsync(Expression<Func<Person, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<Person, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, Person> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Person> |
Returns
GetAllPersonsAsync(Expression<Func<Person, bool>>?, params string[])
public Task<Person[]> GetAllPersonsAsync(Expression<Func<Person, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Person> |
| includeProperties | string |
Returns
GetAllPersonsAsync(Expression<Func<Person, dynamic>>?, bool, params string[])
public Task<Person[]> GetAllPersonsAsync(Expression<Func<Person, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, Person> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetAllPersonsAsync(params string[])
public Task<Person[]> GetAllPersonsAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
GetAllPersonsAsync(string, Expression<Func<Person, dynamic>>?, bool, Expression<Func<Person, bool>>?)
public Task<dynamic> GetAllPersonsAsync(string projection, Expression<Func<Person, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<Person, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, Person> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Person> |
Returns
| Type |
|---|
Task |
GetAllPersonsAsync(string, Expression<Func<Person, bool>>?, params string[])
public Task<dynamic> GetAllPersonsAsync(string projection, Expression<Func<Person, bool>>? predicate = null, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllPersonsAsync(string, Expression<Func<Person, dynamic>>?, bool, params string[])
public Task<dynamic> GetAllPersonsAsync(string projection, Expression<Func<Person, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllPersonsAsync(string, params string[])
public Task<dynamic> GetAllPersonsAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllRegionsAsync(Expression<Func<Region, dynamic>>?, bool, Expression<Func<Region, bool>>?)
public Task<Region[]> GetAllRegionsAsync(Expression<Func<Region, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<Region, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, Region> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Region> |
Returns
GetAllRegionsAsync(Expression<Func<Region, bool>>?, params string[])
public Task<Region[]> GetAllRegionsAsync(Expression<Func<Region, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Region> |
| includeProperties | string |
Returns
GetAllRegionsAsync(Expression<Func<Region, dynamic>>?, bool, params string[])
public Task<Region[]> GetAllRegionsAsync(Expression<Func<Region, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, Region> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetAllRegionsAsync(params string[])
public Task<Region[]> GetAllRegionsAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
GetAllRegionsAsync(string, Expression<Func<Region, dynamic>>?, bool, Expression<Func<Region, bool>>?)
public Task<dynamic> GetAllRegionsAsync(string projection, Expression<Func<Region, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<Region, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, Region> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Region> |
Returns
| Type |
|---|
Task |
GetAllRegionsAsync(string, Expression<Func<Region, bool>>?, params string[])
public Task<dynamic> GetAllRegionsAsync(string projection, Expression<Func<Region, bool>>? predicate = null, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllRegionsAsync(string, Expression<Func<Region, dynamic>>?, bool, params string[])
public Task<dynamic> GetAllRegionsAsync(string projection, Expression<Func<Region, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllRegionsAsync(string, params string[])
public Task<dynamic> GetAllRegionsAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllResourceAuthorRelationsAsync(Expression<Func<ResourceAuthorRelation, object>>?, bool, Expression<Func<ResourceAuthorRelation, bool>>?)
public Task<ResourceAuthorRelation[]> GetAllResourceAuthorRelationsAsync(Expression<Func<ResourceAuthorRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceAuthorRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, ResourceAuthorRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceAuthorRelation> |
Returns
| Type |
|---|
Task<ResourceAuthorRelation>[] |
GetAllResourceAuthorRelationsAsync(Expression<Func<ResourceAuthorRelation, bool>>?, params string[])
public Task<ResourceAuthorRelation[]> GetAllResourceAuthorRelationsAsync(Expression<Func<ResourceAuthorRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceAuthorRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceAuthorRelation>[] |
GetAllResourceAuthorRelationsAsync(Expression<Func<ResourceAuthorRelation, object>>?, bool, params string[])
public Task<ResourceAuthorRelation[]> GetAllResourceAuthorRelationsAsync(Expression<Func<ResourceAuthorRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, ResourceAuthorRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceAuthorRelation>[] |
GetAllResourceAuthorRelationsAsync(params string[])
public Task<ResourceAuthorRelation[]> GetAllResourceAuthorRelationsAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceAuthorRelation>[] |
GetAllResourceAuthorRelationsAsync(string, Expression<Func<ResourceAuthorRelation, object>>?, bool, Expression<Func<ResourceAuthorRelation, bool>>?)
public Task<dynamic> GetAllResourceAuthorRelationsAsync(string projection, Expression<Func<ResourceAuthorRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceAuthorRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, ResourceAuthorRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceAuthorRelation> |
Returns
| Type |
|---|
Task |
GetAllResourceAuthorRelationsAsync(string, Expression<Func<ResourceAuthorRelation, bool>>?, params string[])
public Task<dynamic> GetAllResourceAuthorRelationsAsync(string projection, Expression<Func<ResourceAuthorRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| predicate | Expression<Func, bool, ResourceAuthorRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllResourceAuthorRelationsAsync(string, Expression<Func<ResourceAuthorRelation, object>>?, bool, params string[])
public Task<dynamic> GetAllResourceAuthorRelationsAsync(string projection, Expression<Func<ResourceAuthorRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, ResourceAuthorRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllResourceAuthorRelationsAsync(string, params string[])
public Task<dynamic> GetAllResourceAuthorRelationsAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllResourceOrganisationRelationsAsync(Expression<Func<ResourceOrganisationRelation, object>>?, bool, Expression<Func<ResourceOrganisationRelation, bool>>?)
public Task<ResourceOrganisationRelation[]> GetAllResourceOrganisationRelationsAsync(Expression<Func<ResourceOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceOrganisationRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, ResourceOrganisationRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceOrganisationRelation> |
Returns
| Type |
|---|
Task<ResourceOrganisationRelation>[] |
GetAllResourceOrganisationRelationsAsync(Expression<Func<ResourceOrganisationRelation, bool>>?, params string[])
public Task<ResourceOrganisationRelation[]> GetAllResourceOrganisationRelationsAsync(Expression<Func<ResourceOrganisationRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceOrganisationRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceOrganisationRelation>[] |
GetAllResourceOrganisationRelationsAsync(Expression<Func<ResourceOrganisationRelation, object>>?, bool, params string[])
public Task<ResourceOrganisationRelation[]> GetAllResourceOrganisationRelationsAsync(Expression<Func<ResourceOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, ResourceOrganisationRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceOrganisationRelation>[] |
GetAllResourceOrganisationRelationsAsync(params string[])
public Task<ResourceOrganisationRelation[]> GetAllResourceOrganisationRelationsAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceOrganisationRelation>[] |
GetAllResourceOrganisationRelationsAsync(string, Expression<Func<ResourceOrganisationRelation, object>>?, bool, Expression<Func<ResourceOrganisationRelation, bool>>?)
public Task<dynamic> GetAllResourceOrganisationRelationsAsync(string projection, Expression<Func<ResourceOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceOrganisationRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, ResourceOrganisationRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceOrganisationRelation> |
Returns
| Type |
|---|
Task |
GetAllResourceOrganisationRelationsAsync(string, Expression<Func<ResourceOrganisationRelation, bool>>?, params string[])
public Task<dynamic> GetAllResourceOrganisationRelationsAsync(string projection, Expression<Func<ResourceOrganisationRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| predicate | Expression<Func, bool, ResourceOrganisationRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllResourceOrganisationRelationsAsync(string, Expression<Func<ResourceOrganisationRelation, object>>?, bool, params string[])
public Task<dynamic> GetAllResourceOrganisationRelationsAsync(string projection, Expression<Func<ResourceOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, ResourceOrganisationRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllResourceOrganisationRelationsAsync(string, params string[])
public Task<dynamic> GetAllResourceOrganisationRelationsAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllResourceRegionRelationsAsync(Expression<Func<ResourceRegionRelation, object>>?, bool, Expression<Func<ResourceRegionRelation, bool>>?)
public Task<ResourceRegionRelation[]> GetAllResourceRegionRelationsAsync(Expression<Func<ResourceRegionRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceRegionRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, ResourceRegionRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceRegionRelation> |
Returns
| Type |
|---|
Task<ResourceRegionRelation>[] |
GetAllResourceRegionRelationsAsync(Expression<Func<ResourceRegionRelation, bool>>?, params string[])
public Task<ResourceRegionRelation[]> GetAllResourceRegionRelationsAsync(Expression<Func<ResourceRegionRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRegionRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceRegionRelation>[] |
GetAllResourceRegionRelationsAsync(Expression<Func<ResourceRegionRelation, object>>?, bool, params string[])
public Task<ResourceRegionRelation[]> GetAllResourceRegionRelationsAsync(Expression<Func<ResourceRegionRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, ResourceRegionRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceRegionRelation>[] |
GetAllResourceRegionRelationsAsync(params string[])
public Task<ResourceRegionRelation[]> GetAllResourceRegionRelationsAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceRegionRelation>[] |
GetAllResourceRegionRelationsAsync(string, Expression<Func<ResourceRegionRelation, object>>?, bool, Expression<Func<ResourceRegionRelation, bool>>?)
public Task<dynamic> GetAllResourceRegionRelationsAsync(string projection, Expression<Func<ResourceRegionRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceRegionRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, ResourceRegionRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceRegionRelation> |
Returns
| Type |
|---|
Task |
GetAllResourceRegionRelationsAsync(string, Expression<Func<ResourceRegionRelation, bool>>?, params string[])
public Task<dynamic> GetAllResourceRegionRelationsAsync(string projection, Expression<Func<ResourceRegionRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| predicate | Expression<Func, bool, ResourceRegionRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllResourceRegionRelationsAsync(string, Expression<Func<ResourceRegionRelation, object>>?, bool, params string[])
public Task<dynamic> GetAllResourceRegionRelationsAsync(string projection, Expression<Func<ResourceRegionRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, ResourceRegionRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllResourceRegionRelationsAsync(string, params string[])
public Task<dynamic> GetAllResourceRegionRelationsAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllResourceRelatedOrganisationRelationsAsync(Expression<Func<ResourceRelatedOrganisationRelation, object>>?, bool, Expression<Func<ResourceRelatedOrganisationRelation, bool>>?)
public Task<ResourceRelatedOrganisationRelation[]> GetAllResourceRelatedOrganisationRelationsAsync(Expression<Func<ResourceRelatedOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceRelatedOrganisationRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, ResourceRelatedOrganisationRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceRelatedOrganisationRelation> |
Returns
GetAllResourceRelatedOrganisationRelationsAsync(Expression<Func<ResourceRelatedOrganisationRelation, bool>>?, params string[])
public Task<ResourceRelatedOrganisationRelation[]> GetAllResourceRelatedOrganisationRelationsAsync(Expression<Func<ResourceRelatedOrganisationRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedOrganisationRelation> |
| includeProperties | string |
Returns
GetAllResourceRelatedOrganisationRelationsAsync(Expression<Func<ResourceRelatedOrganisationRelation, object>>?, bool, params string[])
public Task<ResourceRelatedOrganisationRelation[]> GetAllResourceRelatedOrganisationRelationsAsync(Expression<Func<ResourceRelatedOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, ResourceRelatedOrganisationRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetAllResourceRelatedOrganisationRelationsAsync(params string[])
public Task<ResourceRelatedOrganisationRelation[]> GetAllResourceRelatedOrganisationRelationsAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
GetAllResourceRelatedOrganisationRelationsAsync(string, Expression<Func<ResourceRelatedOrganisationRelation, object>>?, bool, Expression<Func<ResourceRelatedOrganisationRelation, bool>>?)
public Task<dynamic> GetAllResourceRelatedOrganisationRelationsAsync(string projection, Expression<Func<ResourceRelatedOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceRelatedOrganisationRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, ResourceRelatedOrganisationRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceRelatedOrganisationRelation> |
Returns
| Type |
|---|
Task |
GetAllResourceRelatedOrganisationRelationsAsync(string, Expression<Func<ResourceRelatedOrganisationRelation, bool>>?, params string[])
public Task<dynamic> GetAllResourceRelatedOrganisationRelationsAsync(string projection, Expression<Func<ResourceRelatedOrganisationRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| predicate | Expression<Func, bool, ResourceRelatedOrganisationRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllResourceRelatedOrganisationRelationsAsync(string, Expression<Func<ResourceRelatedOrganisationRelation, object>>?, bool, params string[])
public Task<dynamic> GetAllResourceRelatedOrganisationRelationsAsync(string projection, Expression<Func<ResourceRelatedOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, ResourceRelatedOrganisationRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllResourceRelatedOrganisationRelationsAsync(string, params string[])
public Task<dynamic> GetAllResourceRelatedOrganisationRelationsAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllResourceRelatedPersonRelationsAsync(Expression<Func<ResourceRelatedPersonRelation, object>>?, bool, Expression<Func<ResourceRelatedPersonRelation, bool>>?)
public Task<ResourceRelatedPersonRelation[]> GetAllResourceRelatedPersonRelationsAsync(Expression<Func<ResourceRelatedPersonRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceRelatedPersonRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, ResourceRelatedPersonRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceRelatedPersonRelation> |
Returns
GetAllResourceRelatedPersonRelationsAsync(Expression<Func<ResourceRelatedPersonRelation, bool>>?, params string[])
public Task<ResourceRelatedPersonRelation[]> GetAllResourceRelatedPersonRelationsAsync(Expression<Func<ResourceRelatedPersonRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedPersonRelation> |
| includeProperties | string |
Returns
GetAllResourceRelatedPersonRelationsAsync(Expression<Func<ResourceRelatedPersonRelation, object>>?, bool, params string[])
public Task<ResourceRelatedPersonRelation[]> GetAllResourceRelatedPersonRelationsAsync(Expression<Func<ResourceRelatedPersonRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, ResourceRelatedPersonRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetAllResourceRelatedPersonRelationsAsync(params string[])
public Task<ResourceRelatedPersonRelation[]> GetAllResourceRelatedPersonRelationsAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
GetAllResourceRelatedPersonRelationsAsync(string, Expression<Func<ResourceRelatedPersonRelation, object>>?, bool, Expression<Func<ResourceRelatedPersonRelation, bool>>?)
public Task<dynamic> GetAllResourceRelatedPersonRelationsAsync(string projection, Expression<Func<ResourceRelatedPersonRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceRelatedPersonRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, ResourceRelatedPersonRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceRelatedPersonRelation> |
Returns
| Type |
|---|
Task |
GetAllResourceRelatedPersonRelationsAsync(string, Expression<Func<ResourceRelatedPersonRelation, bool>>?, params string[])
public Task<dynamic> GetAllResourceRelatedPersonRelationsAsync(string projection, Expression<Func<ResourceRelatedPersonRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| predicate | Expression<Func, bool, ResourceRelatedPersonRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllResourceRelatedPersonRelationsAsync(string, Expression<Func<ResourceRelatedPersonRelation, object>>?, bool, params string[])
public Task<dynamic> GetAllResourceRelatedPersonRelationsAsync(string projection, Expression<Func<ResourceRelatedPersonRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, ResourceRelatedPersonRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllResourceRelatedPersonRelationsAsync(string, params string[])
public Task<dynamic> GetAllResourceRelatedPersonRelationsAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllResourceRelatedSourceRelationsAsync(Expression<Func<ResourceRelatedSourceRelation, object>>?, bool, Expression<Func<ResourceRelatedSourceRelation, bool>>?)
public Task<ResourceRelatedSourceRelation[]> GetAllResourceRelatedSourceRelationsAsync(Expression<Func<ResourceRelatedSourceRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceRelatedSourceRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, ResourceRelatedSourceRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceRelatedSourceRelation> |
Returns
GetAllResourceRelatedSourceRelationsAsync(Expression<Func<ResourceRelatedSourceRelation, bool>>?, params string[])
public Task<ResourceRelatedSourceRelation[]> GetAllResourceRelatedSourceRelationsAsync(Expression<Func<ResourceRelatedSourceRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedSourceRelation> |
| includeProperties | string |
Returns
GetAllResourceRelatedSourceRelationsAsync(Expression<Func<ResourceRelatedSourceRelation, object>>?, bool, params string[])
public Task<ResourceRelatedSourceRelation[]> GetAllResourceRelatedSourceRelationsAsync(Expression<Func<ResourceRelatedSourceRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, ResourceRelatedSourceRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetAllResourceRelatedSourceRelationsAsync(params string[])
public Task<ResourceRelatedSourceRelation[]> GetAllResourceRelatedSourceRelationsAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
GetAllResourceRelatedSourceRelationsAsync(string, Expression<Func<ResourceRelatedSourceRelation, object>>?, bool, Expression<Func<ResourceRelatedSourceRelation, bool>>?)
public Task<dynamic> GetAllResourceRelatedSourceRelationsAsync(string projection, Expression<Func<ResourceRelatedSourceRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceRelatedSourceRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, ResourceRelatedSourceRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceRelatedSourceRelation> |
Returns
| Type |
|---|
Task |
GetAllResourceRelatedSourceRelationsAsync(string, Expression<Func<ResourceRelatedSourceRelation, bool>>?, params string[])
public Task<dynamic> GetAllResourceRelatedSourceRelationsAsync(string projection, Expression<Func<ResourceRelatedSourceRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| predicate | Expression<Func, bool, ResourceRelatedSourceRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllResourceRelatedSourceRelationsAsync(string, Expression<Func<ResourceRelatedSourceRelation, object>>?, bool, params string[])
public Task<dynamic> GetAllResourceRelatedSourceRelationsAsync(string projection, Expression<Func<ResourceRelatedSourceRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, ResourceRelatedSourceRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllResourceRelatedSourceRelationsAsync(string, params string[])
public Task<dynamic> GetAllResourceRelatedSourceRelationsAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllResourceSourceRelationsAsync(Expression<Func<ResourceSourceRelation, object>>?, bool, Expression<Func<ResourceSourceRelation, bool>>?)
public Task<ResourceSourceRelation[]> GetAllResourceSourceRelationsAsync(Expression<Func<ResourceSourceRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceSourceRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, ResourceSourceRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceSourceRelation> |
Returns
| Type |
|---|
Task<ResourceSourceRelation>[] |
GetAllResourceSourceRelationsAsync(Expression<Func<ResourceSourceRelation, bool>>?, params string[])
public Task<ResourceSourceRelation[]> GetAllResourceSourceRelationsAsync(Expression<Func<ResourceSourceRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceSourceRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceSourceRelation>[] |
GetAllResourceSourceRelationsAsync(Expression<Func<ResourceSourceRelation, object>>?, bool, params string[])
public Task<ResourceSourceRelation[]> GetAllResourceSourceRelationsAsync(Expression<Func<ResourceSourceRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, ResourceSourceRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceSourceRelation>[] |
GetAllResourceSourceRelationsAsync(params string[])
public Task<ResourceSourceRelation[]> GetAllResourceSourceRelationsAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceSourceRelation>[] |
GetAllResourceSourceRelationsAsync(string, Expression<Func<ResourceSourceRelation, object>>?, bool, Expression<Func<ResourceSourceRelation, bool>>?)
public Task<dynamic> GetAllResourceSourceRelationsAsync(string projection, Expression<Func<ResourceSourceRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceSourceRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, ResourceSourceRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceSourceRelation> |
Returns
| Type |
|---|
Task |
GetAllResourceSourceRelationsAsync(string, Expression<Func<ResourceSourceRelation, bool>>?, params string[])
public Task<dynamic> GetAllResourceSourceRelationsAsync(string projection, Expression<Func<ResourceSourceRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| predicate | Expression<Func, bool, ResourceSourceRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllResourceSourceRelationsAsync(string, Expression<Func<ResourceSourceRelation, object>>?, bool, params string[])
public Task<dynamic> GetAllResourceSourceRelationsAsync(string projection, Expression<Func<ResourceSourceRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, ResourceSourceRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllResourceSourceRelationsAsync(string, params string[])
public Task<dynamic> GetAllResourceSourceRelationsAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllResourceTagRelationsAsync(Expression<Func<ResourceTagRelation, object>>?, bool, Expression<Func<ResourceTagRelation, bool>>?)
public Task<ResourceTagRelation[]> GetAllResourceTagRelationsAsync(Expression<Func<ResourceTagRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceTagRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, ResourceTagRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceTagRelation> |
Returns
| Type |
|---|
Task<ResourceTagRelation>[] |
GetAllResourceTagRelationsAsync(Expression<Func<ResourceTagRelation, bool>>?, params string[])
public Task<ResourceTagRelation[]> GetAllResourceTagRelationsAsync(Expression<Func<ResourceTagRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceTagRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceTagRelation>[] |
GetAllResourceTagRelationsAsync(Expression<Func<ResourceTagRelation, object>>?, bool, params string[])
public Task<ResourceTagRelation[]> GetAllResourceTagRelationsAsync(Expression<Func<ResourceTagRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, object, ResourceTagRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceTagRelation>[] |
GetAllResourceTagRelationsAsync(params string[])
public Task<ResourceTagRelation[]> GetAllResourceTagRelationsAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceTagRelation>[] |
GetAllResourceTagRelationsAsync(string, Expression<Func<ResourceTagRelation, object>>?, bool, Expression<Func<ResourceTagRelation, bool>>?)
public Task<dynamic> GetAllResourceTagRelationsAsync(string projection, Expression<Func<ResourceTagRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceTagRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, ResourceTagRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceTagRelation> |
Returns
| Type |
|---|
Task |
GetAllResourceTagRelationsAsync(string, Expression<Func<ResourceTagRelation, bool>>?, params string[])
public Task<dynamic> GetAllResourceTagRelationsAsync(string projection, Expression<Func<ResourceTagRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| predicate | Expression<Func, bool, ResourceTagRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllResourceTagRelationsAsync(string, Expression<Func<ResourceTagRelation, object>>?, bool, params string[])
public Task<dynamic> GetAllResourceTagRelationsAsync(string projection, Expression<Func<ResourceTagRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, object, ResourceTagRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllResourceTagRelationsAsync(string, params string[])
public Task<dynamic> GetAllResourceTagRelationsAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllResourceTrashItemsAsync(Expression<Func<ResourceTrashItem, dynamic>>?, bool?, Expression<Func<ResourceTrashItem, bool>>?, params string[])
public Task<ResourceTrashItem[]> GetAllResourceTrashItemsAsync(Expression<Func<ResourceTrashItem, dynamic>>? orderBy = null, bool? orderDescending = null, Expression<Func<ResourceTrashItem, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, ResourceTrashItem> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceTrashItem> |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceTrashItem>[] |
GetAllResourceTrashItemsAsync(string, Expression<Func<ResourceTrashItem, dynamic>>?, bool?, Expression<Func<ResourceTrashItem, bool>>?, params string[])
public Task<dynamic[]> GetAllResourceTrashItemsAsync(string projection, Expression<Func<ResourceTrashItem, dynamic>>? orderBy = null, bool? orderDescending = null, Expression<Func<ResourceTrashItem, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, ResourceTrashItem> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceTrashItem> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllResourceTypesAsync(Expression<Func<ResourceType, dynamic>>?, bool, Expression<Func<ResourceType, bool>>?)
public Task<ResourceType[]> GetAllResourceTypesAsync(Expression<Func<ResourceType, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<ResourceType, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, ResourceType> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceType> |
Returns
| Type |
|---|
Task<ResourceType>[] |
GetAllResourceTypesAsync(Expression<Func<ResourceType, bool>>?, params string[])
public Task<ResourceType[]> GetAllResourceTypesAsync(Expression<Func<ResourceType, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceType> |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceType>[] |
GetAllResourceTypesAsync(Expression<Func<ResourceType, dynamic>>?, bool, params string[])
public Task<ResourceType[]> GetAllResourceTypesAsync(Expression<Func<ResourceType, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, ResourceType> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceType>[] |
GetAllResourceTypesAsync(params string[])
public Task<ResourceType[]> GetAllResourceTypesAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceType>[] |
GetAllResourceTypesAsync(string, Expression<Func<ResourceType, dynamic>>?, bool, Expression<Func<ResourceType, bool>>?)
public Task<dynamic> GetAllResourceTypesAsync(string projection, Expression<Func<ResourceType, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<ResourceType, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, ResourceType> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceType> |
Returns
| Type |
|---|
Task |
GetAllResourceTypesAsync(string, Expression<Func<ResourceType, bool>>?, params string[])
public Task<dynamic> GetAllResourceTypesAsync(string projection, Expression<Func<ResourceType, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| predicate | Expression<Func, bool, ResourceType> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllResourceTypesAsync(string, Expression<Func<ResourceType, dynamic>>?, bool, params string[])
public Task<dynamic> GetAllResourceTypesAsync(string projection, Expression<Func<ResourceType, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, ResourceType> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllResourceTypesAsync(string, params string[])
public Task<dynamic> GetAllResourceTypesAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllResourcesAsync(Expression<Func<Resource, dynamic>>?, bool, Expression<Func<Resource, bool>>?)
public Task<Resource[]> GetAllResourcesAsync(Expression<Func<Resource, dynamic>>? orderBy = null, bool orderDescending = true, Expression<Func<Resource, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, Resource> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Resource> |
Returns
GetAllResourcesAsync(Expression<Func<Resource, bool>>?, params string[])
public Task<Resource[]> GetAllResourcesAsync(Expression<Func<Resource, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Resource> |
| includeProperties | string |
Returns
GetAllResourcesAsync(Expression<Func<Resource, dynamic>>?, bool, params string[])
public Task<Resource[]> GetAllResourcesAsync(Expression<Func<Resource, dynamic>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, Resource> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetAllResourcesAsync(params string[])
public Task<Resource[]> GetAllResourcesAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
GetAllResourcesAsync(string, Expression<Func<Resource, dynamic>>?, bool, Expression<Func<Resource, bool>>?)
public Task<dynamic[]> GetAllResourcesAsync(string projection, Expression<Func<Resource, dynamic>>? orderBy = null, bool orderDescending = true, Expression<Func<Resource, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, Resource> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Resource> |
Returns
| Type |
|---|
Task |
GetAllResourcesAsync(string, Expression<Func<Resource, bool>>?, params string[])
public Task<dynamic[]> GetAllResourcesAsync(string projection, Expression<Func<Resource, bool>>? predicate = null, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllResourcesAsync(string, Expression<Func<Resource, dynamic>>?, bool, params string[])
public Task<dynamic[]> GetAllResourcesAsync(string projection, Expression<Func<Resource, dynamic>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllResourcesAsync(string, params string[])
public Task<dynamic[]> GetAllResourcesAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllTagsAsync(Expression<Func<Tag, dynamic>>?, bool, Expression<Func<Tag, bool>>?)
public Task<Tag[]> GetAllTagsAsync(Expression<Func<Tag, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<Tag, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, Tag> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Tag> |
Returns
GetAllTagsAsync(Expression<Func<Tag, bool>>?, params string[])
public Task<Tag[]> GetAllTagsAsync(Expression<Func<Tag, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Tag> |
| includeProperties | string |
Returns
GetAllTagsAsync(Expression<Func<Tag, dynamic>>?, bool, params string[])
public Task<Tag[]> GetAllTagsAsync(Expression<Func<Tag, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, Tag> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetAllTagsAsync(params string[])
public Task<Tag[]> GetAllTagsAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
GetAllTagsAsync(string, Expression<Func<Tag, dynamic>>?, bool, Expression<Func<Tag, bool>>?)
public Task<dynamic> GetAllTagsAsync(string projection, Expression<Func<Tag, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<Tag, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, Tag> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Tag> |
Returns
| Type |
|---|
Task |
GetAllTagsAsync(string, Expression<Func<Tag, bool>>?, params string[])
public Task<dynamic> GetAllTagsAsync(string projection, Expression<Func<Tag, bool>>? predicate = null, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllTagsAsync(string, Expression<Func<Tag, dynamic>>?, bool, params string[])
public Task<dynamic> GetAllTagsAsync(string projection, Expression<Func<Tag, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllTagsAsync(string, params string[])
public Task<dynamic> GetAllTagsAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllVideoMetadatasAsync(Expression<Func<VideoMetadata, dynamic>>?, bool, Expression<Func<VideoMetadata, bool>>?)
public Task<VideoMetadata[]> GetAllVideoMetadatasAsync(Expression<Func<VideoMetadata, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<VideoMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, VideoMetadata> |
| orderDescending | bool |
| predicate | Expression<Func, bool, VideoMetadata> |
Returns
| Type |
|---|
Task<VideoMetadata>[] |
GetAllVideoMetadatasAsync(Expression<Func<VideoMetadata, bool>>?, params string[])
public Task<VideoMetadata[]> GetAllVideoMetadatasAsync(Expression<Func<VideoMetadata, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, VideoMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task<VideoMetadata>[] |
GetAllVideoMetadatasAsync(Expression<Func<VideoMetadata, dynamic>>?, bool, params string[])
public Task<VideoMetadata[]> GetAllVideoMetadatasAsync(Expression<Func<VideoMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, VideoMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<VideoMetadata>[] |
GetAllVideoMetadatasAsync(params string[])
public Task<VideoMetadata[]> GetAllVideoMetadatasAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
| Type |
|---|
Task<VideoMetadata>[] |
GetAllVideoMetadatasAsync(string, Expression<Func<VideoMetadata, dynamic>>?, bool, Expression<Func<VideoMetadata, bool>>?)
public Task<dynamic> GetAllVideoMetadatasAsync(string projection, Expression<Func<VideoMetadata, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<VideoMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, VideoMetadata> |
| orderDescending | bool |
| predicate | Expression<Func, bool, VideoMetadata> |
Returns
| Type |
|---|
Task |
GetAllVideoMetadatasAsync(string, Expression<Func<VideoMetadata, bool>>?, params string[])
public Task<dynamic> GetAllVideoMetadatasAsync(string projection, Expression<Func<VideoMetadata, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| predicate | Expression<Func, bool, VideoMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllVideoMetadatasAsync(string, Expression<Func<VideoMetadata, dynamic>>?, bool, params string[])
public Task<dynamic> GetAllVideoMetadatasAsync(string projection, Expression<Func<VideoMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, VideoMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllVideoMetadatasAsync(string, params string[])
public Task<dynamic> GetAllVideoMetadatasAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAllWebsiteMetadatasAsync(Expression<Func<WebsiteMetadata, dynamic>>?, bool, Expression<Func<WebsiteMetadata, bool>>?)
public Task<WebsiteMetadata[]> GetAllWebsiteMetadatasAsync(Expression<Func<WebsiteMetadata, dynamic>>? orderBy = null, bool orderDescending = true, Expression<Func<WebsiteMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, WebsiteMetadata> |
| orderDescending | bool |
| predicate | Expression<Func, bool, WebsiteMetadata> |
Returns
| Type |
|---|
Task<WebsiteMetadata>[] |
GetAllWebsiteMetadatasAsync(Expression<Func<WebsiteMetadata, bool>>?, params string[])
public Task<WebsiteMetadata[]> GetAllWebsiteMetadatasAsync(Expression<Func<WebsiteMetadata, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, WebsiteMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task<WebsiteMetadata>[] |
GetAllWebsiteMetadatasAsync(Expression<Func<WebsiteMetadata, dynamic>>?, bool, params string[])
public Task<WebsiteMetadata[]> GetAllWebsiteMetadatasAsync(Expression<Func<WebsiteMetadata, dynamic>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| orderBy | Expression<Func, WebsiteMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<WebsiteMetadata>[] |
GetAllWebsiteMetadatasAsync(params string[])
public Task<WebsiteMetadata[]> GetAllWebsiteMetadatasAsync(params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| includeProperties | string |
Returns
| Type |
|---|
Task<WebsiteMetadata>[] |
GetAllWebsiteMetadatasAsync(string, Expression<Func<WebsiteMetadata, dynamic>>?, bool, Expression<Func<WebsiteMetadata, bool>>?)
public Task<dynamic> GetAllWebsiteMetadatasAsync(string projection, Expression<Func<WebsiteMetadata, dynamic>>? orderBy = null, bool orderDescending = true, Expression<Func<WebsiteMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, WebsiteMetadata> |
| orderDescending | bool |
| predicate | Expression<Func, bool, WebsiteMetadata> |
Returns
| Type |
|---|
Task |
GetAllWebsiteMetadatasAsync(string, Expression<Func<WebsiteMetadata, bool>>?, params string[])
public Task<dynamic> GetAllWebsiteMetadatasAsync(string projection, Expression<Func<WebsiteMetadata, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| predicate | Expression<Func, bool, WebsiteMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllWebsiteMetadatasAsync(string, Expression<Func<WebsiteMetadata, dynamic>>?, bool, params string[])
public Task<dynamic> GetAllWebsiteMetadatasAsync(string projection, Expression<Func<WebsiteMetadata, dynamic>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| orderBy | Expression<Func, WebsiteMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAllWebsiteMetadatasAsync(string, params string[])
public Task<dynamic> GetAllWebsiteMetadatasAsync(string projection, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAsync<T>(DbSet<T>, Expression<Func<T, bool>>, Expression<Func<T, dynamic>>?, bool, params string[])
protected Task<T?> GetAsync<T>(DbSet<T> dbSet, Expression<Func<T, bool>> predicate, Expression<Func<T, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties) where T : classParameters
| Name | Type |
|---|---|
| dbSet | DbSet |
| predicate | Expression<Func, bool> |
| orderBy | Expression<Func> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
Type Parameters
T
GetAsync<T>(DbSet<T>, Expression<Func<T, bool>>, params string[])
protected Task<T?> GetAsync<T>(DbSet<T> dbSet, Expression<Func<T, bool>> predicate, params string[] includeProperties) where T : classParameters
| Name | Type |
|---|---|
| dbSet | DbSet |
| predicate | Expression<Func, bool> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
Type Parameters
T
GetAudioMetadataAsync(Guid)
public Task<AudioMetadata?> GetAudioMetadataAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
| Type |
|---|
Task<AudioMetadata> |
GetAudioMetadataAsync(string)
public Task<AudioMetadata?> GetAudioMetadataAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
| Type |
|---|
Task<AudioMetadata> |
GetAudioMetadataAsync(Expression<Func<AudioMetadata, bool>>, Expression<Func<AudioMetadata, dynamic>>?, bool, params string[])
public Task<AudioMetadata?> GetAudioMetadataAsync(Expression<Func<AudioMetadata, bool>> predicate, Expression<Func<AudioMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, AudioMetadata> |
| orderBy | Expression<Func, AudioMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<AudioMetadata> |
GetAudioMetadataAsync(Guid, Expression<Func<AudioMetadata, dynamic>>?, bool, params string[])
public Task<AudioMetadata?> GetAudioMetadataAsync(Guid resourceId, Expression<Func<AudioMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
| orderBy | Expression<Func, AudioMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<AudioMetadata> |
GetAudioMetadataAsync(string, Expression<Func<AudioMetadata, dynamic>>?, bool, params string[])
public Task<AudioMetadata?> GetAudioMetadataAsync(string resourceId, Expression<Func<AudioMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| resourceId | string |
| orderBy | Expression<Func, AudioMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<AudioMetadata> |
GetAudioMetadataAsync(Expression<Func<AudioMetadata, bool>>, params string[])
public Task<AudioMetadata?> GetAudioMetadataAsync(Expression<Func<AudioMetadata, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, AudioMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task<AudioMetadata> |
GetAudioMetadataAsync(Guid, params string[])
public Task<AudioMetadata?> GetAudioMetadataAsync(Guid resourceId, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<AudioMetadata> |
GetAudioMetadataAsync(string, params string[])
public Task<AudioMetadata?> GetAudioMetadataAsync(string resourceId, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<AudioMetadata> |
GetAudioMetadataPageAsync(int, int, Expression<Func<AudioMetadata, dynamic>>?, bool, Expression<Func<AudioMetadata, bool>>?)
public Task<AudioMetadata[]> GetAudioMetadataPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<AudioMetadata, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<AudioMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, AudioMetadata> |
| orderDescending | bool |
| predicate | Expression<Func, bool, AudioMetadata> |
Returns
| Type |
|---|
Task<AudioMetadata>[] |
GetAudioMetadataPageAsync(int, int, Expression<Func<AudioMetadata, bool>>?, params string[])
public Task<AudioMetadata[]> GetAudioMetadataPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<AudioMetadata, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, AudioMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task<AudioMetadata>[] |
GetAudioMetadataPageAsync(int, int, Expression<Func<AudioMetadata, dynamic>>?, bool, params string[])
public Task<AudioMetadata[]> GetAudioMetadataPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<AudioMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, AudioMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<AudioMetadata>[] |
GetAudioMetadataPageAsync(int, int, params string[])
public Task<AudioMetadata[]> GetAudioMetadataPageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<AudioMetadata>[] |
GetAudioMetadataPageAsync(string, int, int, Expression<Func<AudioMetadata, dynamic>>?, bool, Expression<Func<AudioMetadata, bool>>?)
public Task<dynamic> GetAudioMetadataPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<AudioMetadata, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<AudioMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, AudioMetadata> |
| orderDescending | bool |
| predicate | Expression<Func, bool, AudioMetadata> |
Returns
| Type |
|---|
Task |
GetAudioMetadataPageAsync(string, int, int, Expression<Func<AudioMetadata, bool>>?, params string[])
public Task<dynamic> GetAudioMetadataPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<AudioMetadata, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, AudioMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAudioMetadataPageAsync(string, int, int, Expression<Func<AudioMetadata, dynamic>>?, bool, params string[])
public Task<dynamic> GetAudioMetadataPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<AudioMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, AudioMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetAudioMetadataPageAsync(string, int, int, params string[])
public Task<dynamic> GetAudioMetadataPageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetAudioMetadataPropertyAsync(Guid, string, Expression<Func<AudioMetadata, dynamic>>?, bool)
public Task<dynamic> GetAudioMetadataPropertyAsync(Guid resourceId, string selector, Expression<Func<AudioMetadata, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
| selector | string |
| orderBy | Expression<Func, AudioMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetAudioMetadataPropertyAsync(string, string, Expression<Func<AudioMetadata, dynamic>>?, bool)
public Task<dynamic> GetAudioMetadataPropertyAsync(string resourceId, string selector, Expression<Func<AudioMetadata, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| resourceId | string |
| selector | string |
| orderBy | Expression<Func, AudioMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetAudioMetadataPropertyAsync(Expression<Func<AudioMetadata, bool>>, string, Expression<Func<AudioMetadata, dynamic>>?, bool)
public Task<dynamic> GetAudioMetadataPropertyAsync(Expression<Func<AudioMetadata, bool>> predicate, string selector, Expression<Func<AudioMetadata, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, AudioMetadata> |
| selector | string |
| orderBy | Expression<Func, AudioMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetAudioMetadataPropertyOrDefaultAsync(Guid, string, Expression<Func<AudioMetadata, dynamic>>?, bool)
public Task<dynamic?> GetAudioMetadataPropertyOrDefaultAsync(Guid resourceId, string selector, Expression<Func<AudioMetadata, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
| selector | string |
| orderBy | Expression<Func, AudioMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetAudioMetadataPropertyOrDefaultAsync(string, string, Expression<Func<AudioMetadata, dynamic>>?, bool)
public Task<dynamic?> GetAudioMetadataPropertyOrDefaultAsync(string resourceId, string selector, Expression<Func<AudioMetadata, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| resourceId | string |
| selector | string |
| orderBy | Expression<Func, AudioMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetAudioMetadataPropertyOrDefaultAsync(Expression<Func<AudioMetadata, bool>>, string, Expression<Func<AudioMetadata, dynamic>>?, bool)
public Task<dynamic?> GetAudioMetadataPropertyOrDefaultAsync(Expression<Func<AudioMetadata, bool>> predicate, string selector, Expression<Func<AudioMetadata, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, AudioMetadata> |
| selector | string |
| orderBy | Expression<Func, AudioMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetCount<T>(DbSet<T>, Expression<Func<T, bool>>?)
protected Task<int> GetCount<T>(DbSet<T> dbSet, Expression<Func<T, bool>>? predicate = null) where T : classParameters
| Name | Type |
|---|---|
| dbSet | DbSet |
| predicate | Expression<Func, bool> |
Returns
Type Parameters
T
GetDocumentMetadataAsync(Guid)
public Task<DocumentMetadata?> GetDocumentMetadataAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
| Type |
|---|
Task<DocumentMetadata> |
GetDocumentMetadataAsync(string)
public Task<DocumentMetadata?> GetDocumentMetadataAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
| Type |
|---|
Task<DocumentMetadata> |
GetDocumentMetadataAsync(Expression<Func<DocumentMetadata, bool>>, Expression<Func<DocumentMetadata, dynamic>>?, bool, params string[])
public Task<DocumentMetadata?> GetDocumentMetadataAsync(Expression<Func<DocumentMetadata, bool>> predicate, Expression<Func<DocumentMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, DocumentMetadata> |
| orderBy | Expression<Func, DocumentMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<DocumentMetadata> |
GetDocumentMetadataAsync(Guid, Expression<Func<DocumentMetadata, dynamic>>?, bool, params string[])
public Task<DocumentMetadata?> GetDocumentMetadataAsync(Guid resourceId, Expression<Func<DocumentMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
| orderBy | Expression<Func, DocumentMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<DocumentMetadata> |
GetDocumentMetadataAsync(string, Expression<Func<DocumentMetadata, dynamic>>?, bool, params string[])
public Task<DocumentMetadata?> GetDocumentMetadataAsync(string resourceId, Expression<Func<DocumentMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| resourceId | string |
| orderBy | Expression<Func, DocumentMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<DocumentMetadata> |
GetDocumentMetadataAsync(Expression<Func<DocumentMetadata, bool>>, params string[])
public Task<DocumentMetadata?> GetDocumentMetadataAsync(Expression<Func<DocumentMetadata, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, DocumentMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task<DocumentMetadata> |
GetDocumentMetadataAsync(Guid, params string[])
public Task<DocumentMetadata?> GetDocumentMetadataAsync(Guid resourceId, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<DocumentMetadata> |
GetDocumentMetadataAsync(string, params string[])
public Task<DocumentMetadata?> GetDocumentMetadataAsync(string resourceId, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<DocumentMetadata> |
GetDocumentMetadataPageAsync(int, int, Expression<Func<DocumentMetadata, dynamic>>?, bool, Expression<Func<DocumentMetadata, bool>>?)
public Task<DocumentMetadata[]> GetDocumentMetadataPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<DocumentMetadata, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<DocumentMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, DocumentMetadata> |
| orderDescending | bool |
| predicate | Expression<Func, bool, DocumentMetadata> |
Returns
| Type |
|---|
Task<DocumentMetadata>[] |
GetDocumentMetadataPageAsync(int, int, Expression<Func<DocumentMetadata, bool>>?, params string[])
public Task<DocumentMetadata[]> GetDocumentMetadataPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<DocumentMetadata, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, DocumentMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task<DocumentMetadata>[] |
GetDocumentMetadataPageAsync(int, int, Expression<Func<DocumentMetadata, dynamic>>?, bool, params string[])
public Task<DocumentMetadata[]> GetDocumentMetadataPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<DocumentMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, DocumentMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<DocumentMetadata>[] |
GetDocumentMetadataPageAsync(int, int, params string[])
public Task<DocumentMetadata[]> GetDocumentMetadataPageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<DocumentMetadata>[] |
GetDocumentMetadataPageAsync(string, int, int, Expression<Func<DocumentMetadata, dynamic>>?, bool, Expression<Func<DocumentMetadata, bool>>?)
public Task<dynamic> GetDocumentMetadataPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<DocumentMetadata, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<DocumentMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, DocumentMetadata> |
| orderDescending | bool |
| predicate | Expression<Func, bool, DocumentMetadata> |
Returns
| Type |
|---|
Task |
GetDocumentMetadataPageAsync(string, int, int, Expression<Func<DocumentMetadata, bool>>?, params string[])
public Task<dynamic> GetDocumentMetadataPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<DocumentMetadata, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, DocumentMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetDocumentMetadataPageAsync(string, int, int, Expression<Func<DocumentMetadata, dynamic>>?, bool, params string[])
public Task<dynamic> GetDocumentMetadataPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<DocumentMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, DocumentMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetDocumentMetadataPageAsync(string, int, int, params string[])
public Task<dynamic> GetDocumentMetadataPageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetDocumentMetadataPropertyAsync(Guid, string, Expression<Func<DocumentMetadata, dynamic>>?, bool)
public Task<dynamic> GetDocumentMetadataPropertyAsync(Guid resourceId, string selector, Expression<Func<DocumentMetadata, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
| selector | string |
| orderBy | Expression<Func, DocumentMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetDocumentMetadataPropertyAsync(string, string, Expression<Func<DocumentMetadata, dynamic>>?, bool)
public Task<dynamic> GetDocumentMetadataPropertyAsync(string resourceId, string selector, Expression<Func<DocumentMetadata, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| resourceId | string |
| selector | string |
| orderBy | Expression<Func, DocumentMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetDocumentMetadataPropertyAsync(Expression<Func<DocumentMetadata, bool>>, string, Expression<Func<DocumentMetadata, dynamic>>?, bool)
public Task<dynamic> GetDocumentMetadataPropertyAsync(Expression<Func<DocumentMetadata, bool>> predicate, string selector, Expression<Func<DocumentMetadata, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, DocumentMetadata> |
| selector | string |
| orderBy | Expression<Func, DocumentMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetDocumentMetadataPropertyOrDefaultAsync(Guid, string, Expression<Func<DocumentMetadata, dynamic>>?, bool)
public Task<dynamic?> GetDocumentMetadataPropertyOrDefaultAsync(Guid resourceId, string selector, Expression<Func<DocumentMetadata, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
| selector | string |
| orderBy | Expression<Func, DocumentMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetDocumentMetadataPropertyOrDefaultAsync(string, string, Expression<Func<DocumentMetadata, dynamic>>?, bool)
public Task<dynamic?> GetDocumentMetadataPropertyOrDefaultAsync(string resourceId, string selector, Expression<Func<DocumentMetadata, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| resourceId | string |
| selector | string |
| orderBy | Expression<Func, DocumentMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetDocumentMetadataPropertyOrDefaultAsync(Expression<Func<DocumentMetadata, bool>>, string, Expression<Func<DocumentMetadata, dynamic>>?, bool)
public Task<dynamic?> GetDocumentMetadataPropertyOrDefaultAsync(Expression<Func<DocumentMetadata, bool>> predicate, string selector, Expression<Func<DocumentMetadata, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, DocumentMetadata> |
| selector | string |
| orderBy | Expression<Func, DocumentMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetMetadataType(Guid)
public Task<string?> GetMetadataType(Guid id)Parameters
| Name | Type |
|---|---|
| id | Guid |
Returns
GetMetadataType(string)
public Task<string?> GetMetadataType(string id)Parameters
| Name | Type |
|---|---|
| id | string |
Returns
GetOrganisationAsync(Guid)
public Task<Organisation?> GetOrganisationAsync(Guid id)Parameters
| Name | Type |
|---|---|
| id | Guid |
Returns
| Type |
|---|
Task<Organisation> |
GetOrganisationAsync(string)
public Task<Organisation?> GetOrganisationAsync(string id)Parameters
| Name | Type |
|---|---|
| id | string |
Returns
| Type |
|---|
Task<Organisation> |
GetOrganisationAsync(Expression<Func<Organisation, bool>>, Expression<Func<Organisation, dynamic>>?, bool, params string[])
public Task<Organisation?> GetOrganisationAsync(Expression<Func<Organisation, bool>> predicate, Expression<Func<Organisation, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Organisation> |
| orderBy | Expression<Func, Organisation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<Organisation> |
GetOrganisationAsync(Guid, Expression<Func<Organisation, dynamic>>?, bool, params string[])
public Task<Organisation?> GetOrganisationAsync(Guid id, Expression<Func<Organisation, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| id | Guid |
| orderBy | Expression<Func, Organisation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<Organisation> |
GetOrganisationAsync(string, Expression<Func<Organisation, dynamic>>?, bool, params string[])
public Task<Organisation?> GetOrganisationAsync(string id, Expression<Func<Organisation, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| id | string |
| orderBy | Expression<Func, Organisation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<Organisation> |
GetOrganisationAsync(Expression<Func<Organisation, bool>>, params string[])
public Task<Organisation?> GetOrganisationAsync(Expression<Func<Organisation, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Organisation> |
| includeProperties | string |
Returns
| Type |
|---|
Task<Organisation> |
GetOrganisationAsync(Guid, params string[])
public Task<Organisation?> GetOrganisationAsync(Guid id, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<Organisation> |
GetOrganisationAsync(string, params string[])
public Task<Organisation?> GetOrganisationAsync(string id, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<Organisation> |
GetOrganisationPageAsync(int, int, Expression<Func<Organisation, dynamic>>?, bool, Expression<Func<Organisation, bool>>?)
public Task<Organisation[]> GetOrganisationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<Organisation, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<Organisation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Organisation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Organisation> |
Returns
| Type |
|---|
Task<Organisation>[] |
GetOrganisationPageAsync(int, int, Expression<Func<Organisation, bool>>?, params string[])
public Task<Organisation[]> GetOrganisationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<Organisation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, Organisation> |
| includeProperties | string |
Returns
| Type |
|---|
Task<Organisation>[] |
GetOrganisationPageAsync(int, int, Expression<Func<Organisation, dynamic>>?, bool, params string[])
public Task<Organisation[]> GetOrganisationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<Organisation, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Organisation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<Organisation>[] |
GetOrganisationPageAsync(int, int, params string[])
public Task<Organisation[]> GetOrganisationPageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<Organisation>[] |
GetOrganisationPageAsync(string, int, int, Expression<Func<Organisation, dynamic>>?, bool, Expression<Func<Organisation, bool>>?)
public Task<dynamic> GetOrganisationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<Organisation, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<Organisation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Organisation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Organisation> |
Returns
| Type |
|---|
Task |
GetOrganisationPageAsync(string, int, int, Expression<Func<Organisation, bool>>?, params string[])
public Task<dynamic> GetOrganisationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<Organisation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, Organisation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetOrganisationPageAsync(string, int, int, Expression<Func<Organisation, dynamic>>?, bool, params string[])
public Task<dynamic> GetOrganisationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<Organisation, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Organisation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetOrganisationPageAsync(string, int, int, params string[])
public Task<dynamic> GetOrganisationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetOrganisationPropertyAsync(Guid, string, Expression<Func<Organisation, dynamic>>?, bool)
public Task<dynamic> GetOrganisationPropertyAsync(Guid organisationId, string selector, Expression<Func<Organisation, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| organisationId | Guid |
| selector | string |
| orderBy | Expression<Func, Organisation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetOrganisationPropertyAsync(string, string, Expression<Func<Organisation, dynamic>>?, bool)
public Task<dynamic> GetOrganisationPropertyAsync(string organisationId, string selector, Expression<Func<Organisation, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| organisationId | string |
| selector | string |
| orderBy | Expression<Func, Organisation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetOrganisationPropertyAsync(Expression<Func<Organisation, bool>>, string, Expression<Func<Organisation, dynamic>>?, bool)
public Task<dynamic?> GetOrganisationPropertyAsync(Expression<Func<Organisation, bool>> predicate, string selector, Expression<Func<Organisation, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Organisation> |
| selector | string |
| orderBy | Expression<Func, Organisation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetOrganisationPropertyOrDefaultAsync(Guid, string, Expression<Func<Organisation, dynamic>>?, bool)
public Task<dynamic?> GetOrganisationPropertyOrDefaultAsync(Guid organisationId, string selector, Expression<Func<Organisation, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| organisationId | Guid |
| selector | string |
| orderBy | Expression<Func, Organisation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetOrganisationPropertyOrDefaultAsync(string, string, Expression<Func<Organisation, dynamic>>?, bool)
public Task<dynamic?> GetOrganisationPropertyOrDefaultAsync(string organisationId, string selector, Expression<Func<Organisation, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| organisationId | string |
| selector | string |
| orderBy | Expression<Func, Organisation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetOrganisationPropertyOrDefaultAsync(Expression<Func<Organisation, bool>>, string, Expression<Func<Organisation, dynamic>>?, bool)
public Task<dynamic?> GetOrganisationPropertyOrDefaultAsync(Expression<Func<Organisation, bool>> predicate, string selector, Expression<Func<Organisation, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Organisation> |
| selector | string |
| orderBy | Expression<Func, Organisation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetOrganisationRelationshipAsync(Expression<Func<OrganisationRelationship, bool>>, Expression<Func<OrganisationRelationship, object>>?, bool, params string[])
public Task<OrganisationRelationship?> GetOrganisationRelationshipAsync(Expression<Func<OrganisationRelationship, bool>> predicate, Expression<Func<OrganisationRelationship, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, OrganisationRelationship> |
| orderBy | Expression<Func, object, OrganisationRelationship> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetOrganisationRelationshipAsync(Expression<Func<OrganisationRelationship, bool>>, params string[])
public Task<OrganisationRelationship?> GetOrganisationRelationshipAsync(Expression<Func<OrganisationRelationship, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, OrganisationRelationship> |
| includeProperties | string |
Returns
GetOrganisationRelationshipPageAsync(int, int, Expression<Func<OrganisationRelationship, object>>?, bool, Expression<Func<OrganisationRelationship, bool>>?)
public Task<OrganisationRelationship[]> GetOrganisationRelationshipPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<OrganisationRelationship, object>>? orderBy = null, bool orderDescending = true, Expression<Func<OrganisationRelationship, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, OrganisationRelationship> |
| orderDescending | bool |
| predicate | Expression<Func, bool, OrganisationRelationship> |
Returns
| Type |
|---|
Task<OrganisationRelationship>[] |
GetOrganisationRelationshipPageAsync(int, int, Expression<Func<OrganisationRelationship, bool>>?, params string[])
public Task<OrganisationRelationship[]> GetOrganisationRelationshipPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<OrganisationRelationship, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, OrganisationRelationship> |
| includeProperties | string |
Returns
| Type |
|---|
Task<OrganisationRelationship>[] |
GetOrganisationRelationshipPageAsync(int, int, Expression<Func<OrganisationRelationship, object>>?, bool, params string[])
public Task<OrganisationRelationship[]> GetOrganisationRelationshipPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<OrganisationRelationship, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, OrganisationRelationship> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<OrganisationRelationship>[] |
GetOrganisationRelationshipPageAsync(int, int, params string[])
public Task<OrganisationRelationship[]> GetOrganisationRelationshipPageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<OrganisationRelationship>[] |
GetOrganisationRelationshipPageAsync(string, int, int, Expression<Func<OrganisationRelationship, object>>?, bool, Expression<Func<OrganisationRelationship, bool>>?)
public Task<dynamic> GetOrganisationRelationshipPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<OrganisationRelationship, object>>? orderBy = null, bool orderDescending = true, Expression<Func<OrganisationRelationship, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, OrganisationRelationship> |
| orderDescending | bool |
| predicate | Expression<Func, bool, OrganisationRelationship> |
Returns
| Type |
|---|
Task |
GetOrganisationRelationshipPageAsync(string, int, int, Expression<Func<OrganisationRelationship, bool>>?, params string[])
public Task<dynamic> GetOrganisationRelationshipPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<OrganisationRelationship, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, OrganisationRelationship> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetOrganisationRelationshipPageAsync(string, int, int, Expression<Func<OrganisationRelationship, object>>?, bool, params string[])
public Task<dynamic> GetOrganisationRelationshipPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<OrganisationRelationship, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, OrganisationRelationship> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetOrganisationRelationshipPageAsync(string, int, int, params string[])
public Task<dynamic> GetOrganisationRelationshipPageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetOrganisationRelationshipPropertyAsync(Expression<Func<OrganisationRelationship, bool>>, string, Expression<Func<OrganisationRelationship, object>>?, bool)
public Task<dynamic?> GetOrganisationRelationshipPropertyAsync(Expression<Func<OrganisationRelationship, bool>> predicate, string selector, Expression<Func<OrganisationRelationship, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, OrganisationRelationship> |
| selector | string |
| orderBy | Expression<Func, object, OrganisationRelationship> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetOrganisationRelationshipPropertyOrDefaultAsync(Expression<Func<OrganisationRelationship, bool>>, string, Expression<Func<OrganisationRelationship, object>>?, bool)
public Task<dynamic?> GetOrganisationRelationshipPropertyOrDefaultAsync(Expression<Func<OrganisationRelationship, bool>> predicate, string selector, Expression<Func<OrganisationRelationship, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, OrganisationRelationship> |
| selector | string |
| orderBy | Expression<Func, object, OrganisationRelationship> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetPageAsync<T>(DbSet<T>, int, int, Expression<Func<T, dynamic>>?, bool, Expression<Func<T, bool>>?, params string[])
protected Task<T[]> GetPageAsync<T>(DbSet<T> dbSet, int pageIndex = 1, int pageSize = 100, Expression<Func<T, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<T, bool>>? predicate = null, params string[] includeProperties) where T : classParameters
| Name | Type |
|---|---|
| dbSet | DbSet |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func> |
| orderDescending | bool |
| predicate | Expression<Func, bool> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
Type Parameters
T
GetPageAsync<TSet>(DbSet<TSet>, string, int, int, Expression<Func<TSet, dynamic>>?, bool, Expression<Func<TSet, bool>>?, params string[])
protected Task<dynamic[]> GetPageAsync<TSet>(DbSet<TSet> dbSet, string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<TSet, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<TSet, bool>>? predicate = null, params string[] includeProperties) where TSet : classParameters
| Name | Type |
|---|---|
| dbSet | DbSet |
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func> |
| orderDescending | bool |
| predicate | Expression<Func, bool> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
Type Parameters
TSet
GetPersonAsync(Guid)
public Task<Person?> GetPersonAsync(Guid id)Parameters
| Name | Type |
|---|---|
| id | Guid |
Returns
GetPersonAsync(string)
public Task<Person?> GetPersonAsync(string id)Parameters
| Name | Type |
|---|---|
| id | string |
Returns
GetPersonAsync(Expression<Func<Person, bool>>, Expression<Func<Person, dynamic>>?, bool, params string[])
public Task<Person?> GetPersonAsync(Expression<Func<Person, bool>> predicate, Expression<Func<Person, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Person> |
| orderBy | Expression<Func, Person> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetPersonAsync(Guid, Expression<Func<Person, dynamic>>?, bool, params string[])
public Task<Person?> GetPersonAsync(Guid id, Expression<Func<Person, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
Returns
GetPersonAsync(string, Expression<Func<Person, dynamic>>?, bool, params string[])
public Task<Person?> GetPersonAsync(string id, Expression<Func<Person, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
Returns
GetPersonAsync(Expression<Func<Person, bool>>, params string[])
public Task<Person?> GetPersonAsync(Expression<Func<Person, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Person> |
| includeProperties | string |
Returns
GetPersonAsync(Guid, params string[])
public Task<Person?> GetPersonAsync(Guid id, params string[] includeProperties)Parameters
Returns
GetPersonAsync(string, params string[])
public Task<Person?> GetPersonAsync(string id, params string[] includeProperties)Parameters
Returns
GetPersonOrganisationRelationAsync(Expression<Func<PersonOrganisationRelation, bool>>, Expression<Func<PersonOrganisationRelation, object>>?, bool, params string[])
public Task<PersonOrganisationRelation?> GetPersonOrganisationRelationAsync(Expression<Func<PersonOrganisationRelation, bool>> predicate, Expression<Func<PersonOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, PersonOrganisationRelation> |
| orderBy | Expression<Func, object, PersonOrganisationRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetPersonOrganisationRelationAsync(Expression<Func<PersonOrganisationRelation, bool>>, params string[])
public Task<PersonOrganisationRelation?> GetPersonOrganisationRelationAsync(Expression<Func<PersonOrganisationRelation, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, PersonOrganisationRelation> |
| includeProperties | string |
Returns
GetPersonOrganisationRelationPageAsync(int, int, Expression<Func<PersonOrganisationRelation, object>>?, bool, Expression<Func<PersonOrganisationRelation, bool>>?)
public Task<PersonOrganisationRelation[]> GetPersonOrganisationRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<PersonOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<PersonOrganisationRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, PersonOrganisationRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, PersonOrganisationRelation> |
Returns
| Type |
|---|
Task<PersonOrganisationRelation>[] |
GetPersonOrganisationRelationPageAsync(int, int, Expression<Func<PersonOrganisationRelation, bool>>?, params string[])
public Task<PersonOrganisationRelation[]> GetPersonOrganisationRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<PersonOrganisationRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, PersonOrganisationRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task<PersonOrganisationRelation>[] |
GetPersonOrganisationRelationPageAsync(int, int, Expression<Func<PersonOrganisationRelation, object>>?, bool, params string[])
public Task<PersonOrganisationRelation[]> GetPersonOrganisationRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<PersonOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, PersonOrganisationRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<PersonOrganisationRelation>[] |
GetPersonOrganisationRelationPageAsync(int, int, params string[])
public Task<PersonOrganisationRelation[]> GetPersonOrganisationRelationPageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<PersonOrganisationRelation>[] |
GetPersonOrganisationRelationPageAsync(string, int, int, Expression<Func<PersonOrganisationRelation, object>>?, bool, Expression<Func<PersonOrganisationRelation, bool>>?)
public Task<dynamic> GetPersonOrganisationRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<PersonOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<PersonOrganisationRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, PersonOrganisationRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, PersonOrganisationRelation> |
Returns
| Type |
|---|
Task |
GetPersonOrganisationRelationPageAsync(string, int, int, Expression<Func<PersonOrganisationRelation, bool>>?, params string[])
public Task<dynamic> GetPersonOrganisationRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<PersonOrganisationRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, PersonOrganisationRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetPersonOrganisationRelationPageAsync(string, int, int, Expression<Func<PersonOrganisationRelation, object>>?, bool, params string[])
public Task<dynamic> GetPersonOrganisationRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<PersonOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, PersonOrganisationRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetPersonOrganisationRelationPageAsync(string, int, int, params string[])
public Task<dynamic> GetPersonOrganisationRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetPersonOrganisationRelationPropertyAsync(Expression<Func<PersonOrganisationRelation, bool>>, string, Expression<Func<PersonOrganisationRelation, object>>?, bool)
public Task<dynamic?> GetPersonOrganisationRelationPropertyAsync(Expression<Func<PersonOrganisationRelation, bool>> predicate, string selector, Expression<Func<PersonOrganisationRelation, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, PersonOrganisationRelation> |
| selector | string |
| orderBy | Expression<Func, object, PersonOrganisationRelation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetPersonOrganisationRelationPropertyOrDefaultAsync(Expression<Func<PersonOrganisationRelation, bool>>, string, Expression<Func<PersonOrganisationRelation, object>>?, bool)
public Task<dynamic?> GetPersonOrganisationRelationPropertyOrDefaultAsync(Expression<Func<PersonOrganisationRelation, bool>> predicate, string selector, Expression<Func<PersonOrganisationRelation, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, PersonOrganisationRelation> |
| selector | string |
| orderBy | Expression<Func, object, PersonOrganisationRelation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetPersonPageAsync(int, int, Expression<Func<Person, dynamic>>?, bool, Expression<Func<Person, bool>>?)
public Task<Person[]> GetPersonPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<Person, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<Person, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Person> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Person> |
Returns
GetPersonPageAsync(int, int, Expression<Func<Person, bool>>?, params string[])
public Task<Person[]> GetPersonPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<Person, bool>>? predicate = null, params string[] includeProperties)Parameters
Returns
GetPersonPageAsync(int, int, Expression<Func<Person, dynamic>>?, bool, params string[])
public Task<Person[]> GetPersonPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<Person, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Person> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetPersonPageAsync(int, int, params string[])
public Task<Person[]> GetPersonPageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
GetPersonPageAsync(string, int, int, Expression<Func<Person, dynamic>>?, bool, Expression<Func<Person, bool>>?)
public Task<dynamic> GetPersonPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<Person, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<Person, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Person> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Person> |
Returns
| Type |
|---|
Task |
GetPersonPageAsync(string, int, int, Expression<Func<Person, bool>>?, params string[])
public Task<dynamic> GetPersonPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<Person, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, Person> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetPersonPageAsync(string, int, int, Expression<Func<Person, dynamic>>?, bool, params string[])
public Task<dynamic> GetPersonPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<Person, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Person> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetPersonPageAsync(string, int, int, params string[])
public Task<dynamic> GetPersonPageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetPersonPropertyAs(Expression<Func<Person, bool>>, string, Expression<Func<Person, dynamic>>?, bool)
public Task<dynamic?> GetPersonPropertyAs(Expression<Func<Person, bool>> predicate, string selector, Expression<Func<Person, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Person> |
| selector | string |
| orderBy | Expression<Func, Person> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetPersonPropertyAsync(Guid, string, Expression<Func<Person, dynamic>>?, bool)
public Task<dynamic> GetPersonPropertyAsync(Guid personId, string selector, Expression<Func<Person, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
Returns
| Type |
|---|
Task |
GetPersonPropertyAsync(string, string, Expression<Func<Person, dynamic>>?, bool)
public Task<dynamic> GetPersonPropertyAsync(string personId, string selector, Expression<Func<Person, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
Returns
| Type |
|---|
Task |
GetPersonPropertyOrDefaultAsync(Guid, string, Expression<Func<Person, dynamic>>?, bool)
public Task<dynamic?> GetPersonPropertyOrDefaultAsync(Guid personId, string selector, Expression<Func<Person, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
Returns
| Type |
|---|
Task |
GetPersonPropertyOrDefaultAsync(string, string, Expression<Func<Person, dynamic>>?, bool)
public Task<dynamic?> GetPersonPropertyOrDefaultAsync(string personId, string selector, Expression<Func<Person, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
Returns
| Type |
|---|
Task |
GetPersonPropertyOrDefaultAsync(Expression<Func<Person, bool>>, string, Expression<Func<Person, dynamic>>?, bool)
public Task<dynamic?> GetPersonPropertyOrDefaultAsync(Expression<Func<Person, bool>> predicate, string selector, Expression<Func<Person, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Person> |
| selector | string |
| orderBy | Expression<Func, Person> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetPersonRelationshipAsync(Expression<Func<PersonRelationship, bool>>, Expression<Func<PersonRelationship, object>>?, bool, params string[])
public Task<PersonRelationship?> GetPersonRelationshipAsync(Expression<Func<PersonRelationship, bool>> predicate, Expression<Func<PersonRelationship, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, PersonRelationship> |
| orderBy | Expression<Func, object, PersonRelationship> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<PersonRelationship> |
GetPersonRelationshipAsync(Expression<Func<PersonRelationship, bool>>, params string[])
public Task<PersonRelationship?> GetPersonRelationshipAsync(Expression<Func<PersonRelationship, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, PersonRelationship> |
| includeProperties | string |
Returns
| Type |
|---|
Task<PersonRelationship> |
GetPersonRelationshipPageAsync(int, int, Expression<Func<PersonRelationship, object>>?, bool, Expression<Func<PersonRelationship, bool>>?)
public Task<PersonRelationship[]> GetPersonRelationshipPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<PersonRelationship, object>>? orderBy = null, bool orderDescending = true, Expression<Func<PersonRelationship, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, PersonRelationship> |
| orderDescending | bool |
| predicate | Expression<Func, bool, PersonRelationship> |
Returns
| Type |
|---|
Task<PersonRelationship>[] |
GetPersonRelationshipPageAsync(int, int, Expression<Func<PersonRelationship, bool>>?, params string[])
public Task<PersonRelationship[]> GetPersonRelationshipPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<PersonRelationship, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, PersonRelationship> |
| includeProperties | string |
Returns
| Type |
|---|
Task<PersonRelationship>[] |
GetPersonRelationshipPageAsync(int, int, Expression<Func<PersonRelationship, object>>?, bool, params string[])
public Task<PersonRelationship[]> GetPersonRelationshipPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<PersonRelationship, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, PersonRelationship> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<PersonRelationship>[] |
GetPersonRelationshipPageAsync(int, int, params string[])
public Task<PersonRelationship[]> GetPersonRelationshipPageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<PersonRelationship>[] |
GetPersonRelationshipPageAsync(string, int, int, Expression<Func<PersonRelationship, object>>?, bool, Expression<Func<PersonRelationship, bool>>?)
public Task<dynamic> GetPersonRelationshipPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<PersonRelationship, object>>? orderBy = null, bool orderDescending = true, Expression<Func<PersonRelationship, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, PersonRelationship> |
| orderDescending | bool |
| predicate | Expression<Func, bool, PersonRelationship> |
Returns
| Type |
|---|
Task |
GetPersonRelationshipPageAsync(string, int, int, Expression<Func<PersonRelationship, bool>>?, params string[])
public Task<dynamic> GetPersonRelationshipPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<PersonRelationship, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, PersonRelationship> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetPersonRelationshipPageAsync(string, int, int, Expression<Func<PersonRelationship, object>>?, bool, params string[])
public Task<dynamic> GetPersonRelationshipPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<PersonRelationship, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, PersonRelationship> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetPersonRelationshipPageAsync(string, int, int, params string[])
public Task<dynamic> GetPersonRelationshipPageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetPersonRelationshipPropertyAsync(Expression<Func<PersonRelationship, bool>>, string, Expression<Func<PersonRelationship, object>>?, bool)
public Task<dynamic?> GetPersonRelationshipPropertyAsync(Expression<Func<PersonRelationship, bool>> predicate, string selector, Expression<Func<PersonRelationship, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, PersonRelationship> |
| selector | string |
| orderBy | Expression<Func, object, PersonRelationship> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetPersonRelationshipPropertyOrDefaultAsync(Expression<Func<PersonRelationship, bool>>, string, Expression<Func<PersonRelationship, object>>?, bool)
public Task<dynamic?> GetPersonRelationshipPropertyOrDefaultAsync(Expression<Func<PersonRelationship, bool>> predicate, string selector, Expression<Func<PersonRelationship, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, PersonRelationship> |
| selector | string |
| orderBy | Expression<Func, object, PersonRelationship> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetPropertyAsync<TSet>(DbSet<TSet>, Expression<Func<TSet, bool>>, string, Expression<Func<TSet, dynamic>>?, bool)
protected Task<dynamic> GetPropertyAsync<TSet>(DbSet<TSet> dbSet, Expression<Func<TSet, bool>> predicate, string selector, Expression<Func<TSet, dynamic>>? orderBy = null, bool orderDescending = false) where TSet : classParameters
| Name | Type |
|---|---|
| dbSet | DbSet |
| predicate | Expression<Func, bool> |
| selector | string |
| orderBy | Expression<Func> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
Type Parameters
TSet
GetPropertyOrDefaultAsync<TSet>(DbSet<TSet>, Expression<Func<TSet, bool>>, string, Expression<Func<TSet, dynamic>>?, bool)
protected Task<dynamic?> GetPropertyOrDefaultAsync<TSet>(DbSet<TSet> dbSet, Expression<Func<TSet, bool>> predicate, string selector, Expression<Func<TSet, dynamic>>? orderBy = null, bool orderDescending = false) where TSet : classParameters
| Name | Type |
|---|---|
| dbSet | DbSet |
| predicate | Expression<Func, bool> |
| selector | string |
| orderBy | Expression<Func> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
Type Parameters
TSet
GetRegionAsync(Guid)
public Task<Region?> GetRegionAsync(Guid id)Parameters
| Name | Type |
|---|---|
| id | Guid |
Returns
GetRegionAsync(string)
public Task<Region?> GetRegionAsync(string id)Parameters
| Name | Type |
|---|---|
| id | string |
Returns
GetRegionAsync(Expression<Func<Region, bool>>, Expression<Func<Region, dynamic>>?, bool, params string[])
public Task<Region?> GetRegionAsync(Expression<Func<Region, bool>> predicate, Expression<Func<Region, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Region> |
| orderBy | Expression<Func, Region> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetRegionAsync(Guid, Expression<Func<Region, dynamic>>?, bool, params string[])
public Task<Region?> GetRegionAsync(Guid id, Expression<Func<Region, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
Returns
GetRegionAsync(string, Expression<Func<Region, dynamic>>?, bool, params string[])
public Task<Region?> GetRegionAsync(string id, Expression<Func<Region, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
Returns
GetRegionAsync(Expression<Func<Region, bool>>, params string[])
public Task<Region?> GetRegionAsync(Expression<Func<Region, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Region> |
| includeProperties | string |
Returns
GetRegionAsync(Guid, params string[])
public Task<Region?> GetRegionAsync(Guid id, params string[] includeProperties)Parameters
Returns
GetRegionAsync(string, params string[])
public Task<Region?> GetRegionAsync(string id, params string[] includeProperties)Parameters
Returns
GetRegionPageAsync(int, int, Expression<Func<Region, dynamic>>?, bool, Expression<Func<Region, bool>>?)
public Task<Region[]> GetRegionPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<Region, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<Region, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Region> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Region> |
Returns
GetRegionPageAsync(int, int, Expression<Func<Region, bool>>?, params string[])
public Task<Region[]> GetRegionPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<Region, bool>>? predicate = null, params string[] includeProperties)Parameters
Returns
GetRegionPageAsync(int, int, Expression<Func<Region, dynamic>>?, bool, params string[])
public Task<Region[]> GetRegionPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<Region, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Region> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetRegionPageAsync(int, int, params string[])
public Task<Region[]> GetRegionPageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
GetRegionPageAsync(string, int, int, Expression<Func<Region, dynamic>>?, bool, Expression<Func<Region, bool>>?)
public Task<dynamic> GetRegionPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<Region, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<Region, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Region> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Region> |
Returns
| Type |
|---|
Task |
GetRegionPageAsync(string, int, int, Expression<Func<Region, bool>>?, params string[])
public Task<dynamic> GetRegionPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<Region, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, Region> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetRegionPageAsync(string, int, int, Expression<Func<Region, dynamic>>?, bool, params string[])
public Task<dynamic> GetRegionPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<Region, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Region> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetRegionPageAsync(string, int, int, params string[])
public Task<dynamic> GetRegionPageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetRegionPropertyAsync(Guid, string, Expression<Func<Region, dynamic>>?, bool)
public Task<dynamic> GetRegionPropertyAsync(Guid regionId, string selector, Expression<Func<Region, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
Returns
| Type |
|---|
Task |
GetRegionPropertyAsync(string, string, Expression<Func<Region, dynamic>>?, bool)
public Task<dynamic> GetRegionPropertyAsync(string regionId, string selector, Expression<Func<Region, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
Returns
| Type |
|---|
Task |
GetRegionPropertyAsync(Expression<Func<Region, bool>>, string, Expression<Func<Region, dynamic>>?, bool)
public Task<dynamic> GetRegionPropertyAsync(Expression<Func<Region, bool>> predicate, string selector, Expression<Func<Region, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Region> |
| selector | string |
| orderBy | Expression<Func, Region> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetRegionPropertyOrDefaultAsync(Guid, string, Expression<Func<Region, dynamic>>?, bool)
public Task<dynamic?> GetRegionPropertyOrDefaultAsync(Guid regionId, string selector, Expression<Func<Region, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
Returns
| Type |
|---|
Task |
GetRegionPropertyOrDefaultAsync(string, string, Expression<Func<Region, dynamic>>?, bool)
public Task<dynamic?> GetRegionPropertyOrDefaultAsync(string regionId, string selector, Expression<Func<Region, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
Returns
| Type |
|---|
Task |
GetRegionPropertyOrDefaultAsync(Expression<Func<Region, bool>>, string, Expression<Func<Region, dynamic>>?, bool)
public Task<dynamic?> GetRegionPropertyOrDefaultAsync(Expression<Func<Region, bool>> predicate, string selector, Expression<Func<Region, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Region> |
| selector | string |
| orderBy | Expression<Func, Region> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceAsync(Guid)
public Task<Resource?> GetResourceAsync(Guid id)Parameters
| Name | Type |
|---|---|
| id | Guid |
Returns
GetResourceAsync(string)
public Task<Resource?> GetResourceAsync(string id)Parameters
| Name | Type |
|---|---|
| id | string |
Returns
GetResourceAsync(Expression<Func<Resource, bool>>, Expression<Func<Resource, dynamic>>?, bool, params string[])
public Task<Resource?> GetResourceAsync(Expression<Func<Resource, bool>> predicate, Expression<Func<Resource, dynamic>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Resource> |
| orderBy | Expression<Func, Resource> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetResourceAsync(Guid, Expression<Func<Resource, dynamic>>?, bool, params string[])
public Task<Resource?> GetResourceAsync(Guid id, Expression<Func<Resource, dynamic>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
Returns
GetResourceAsync(string, Expression<Func<Resource, dynamic>>?, bool, params string[])
public Task<Resource?> GetResourceAsync(string id, Expression<Func<Resource, dynamic>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
Returns
GetResourceAsync(Expression<Func<Resource, bool>>, params string[])
public Task<Resource?> GetResourceAsync(Expression<Func<Resource, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Resource> |
| includeProperties | string |
Returns
GetResourceAsync(Guid, params string[])
public Task<Resource?> GetResourceAsync(Guid id, params string[] includeProperties)Parameters
Returns
GetResourceAsync(string, params string[])
public Task<Resource?> GetResourceAsync(string id, params string[] includeProperties)Parameters
Returns
GetResourceAuthorRelationAsync(Expression<Func<ResourceAuthorRelation, bool>>, Expression<Func<ResourceAuthorRelation, object>>?, bool, params string[])
public Task<ResourceAuthorRelation?> GetResourceAuthorRelationAsync(Expression<Func<ResourceAuthorRelation, bool>> predicate, Expression<Func<ResourceAuthorRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceAuthorRelation> |
| orderBy | Expression<Func, object, ResourceAuthorRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetResourceAuthorRelationAsync(Expression<Func<ResourceAuthorRelation, bool>>, params string[])
public Task<ResourceAuthorRelation?> GetResourceAuthorRelationAsync(Expression<Func<ResourceAuthorRelation, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceAuthorRelation> |
| includeProperties | string |
Returns
GetResourceAuthorRelationPageAsync(int, int, Expression<Func<ResourceAuthorRelation, object>>?, bool, Expression<Func<ResourceAuthorRelation, bool>>?)
public Task<ResourceAuthorRelation[]> GetResourceAuthorRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceAuthorRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceAuthorRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceAuthorRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceAuthorRelation> |
Returns
| Type |
|---|
Task<ResourceAuthorRelation>[] |
GetResourceAuthorRelationPageAsync(int, int, Expression<Func<ResourceAuthorRelation, bool>>?, params string[])
public Task<ResourceAuthorRelation[]> GetResourceAuthorRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceAuthorRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, ResourceAuthorRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceAuthorRelation>[] |
GetResourceAuthorRelationPageAsync(int, int, Expression<Func<ResourceAuthorRelation, object>>?, bool, params string[])
public Task<ResourceAuthorRelation[]> GetResourceAuthorRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceAuthorRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceAuthorRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceAuthorRelation>[] |
GetResourceAuthorRelationPageAsync(int, int, params string[])
public Task<ResourceAuthorRelation[]> GetResourceAuthorRelationPageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<ResourceAuthorRelation>[] |
GetResourceAuthorRelationPageAsync(string, int, int, Expression<Func<ResourceAuthorRelation, object>>?, bool, Expression<Func<ResourceAuthorRelation, bool>>?)
public Task<dynamic> GetResourceAuthorRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceAuthorRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceAuthorRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceAuthorRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceAuthorRelation> |
Returns
| Type |
|---|
Task |
GetResourceAuthorRelationPageAsync(string, int, int, Expression<Func<ResourceAuthorRelation, bool>>?, params string[])
public Task<dynamic> GetResourceAuthorRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceAuthorRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, ResourceAuthorRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourceAuthorRelationPageAsync(string, int, int, Expression<Func<ResourceAuthorRelation, object>>?, bool, params string[])
public Task<dynamic> GetResourceAuthorRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceAuthorRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceAuthorRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourceAuthorRelationPageAsync(string, int, int, params string[])
public Task<dynamic> GetResourceAuthorRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetResourceAuthorRelationPropertyAsync(Expression<Func<ResourceAuthorRelation, bool>>, string, Expression<Func<ResourceAuthorRelation, object>>?, bool)
public Task<dynamic?> GetResourceAuthorRelationPropertyAsync(Expression<Func<ResourceAuthorRelation, bool>> predicate, string selector, Expression<Func<ResourceAuthorRelation, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceAuthorRelation> |
| selector | string |
| orderBy | Expression<Func, object, ResourceAuthorRelation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceAuthorRelationPropertyOrDefaultAsync(Expression<Func<ResourceAuthorRelation, bool>>, string, Expression<Func<ResourceAuthorRelation, object>>?, bool)
public Task<dynamic?> GetResourceAuthorRelationPropertyOrDefaultAsync(Expression<Func<ResourceAuthorRelation, bool>> predicate, string selector, Expression<Func<ResourceAuthorRelation, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceAuthorRelation> |
| selector | string |
| orderBy | Expression<Func, object, ResourceAuthorRelation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceOrganisationRelationAsync(Expression<Func<ResourceOrganisationRelation, bool>>, Expression<Func<ResourceOrganisationRelation, object>>?, bool, params string[])
public Task<ResourceOrganisationRelation?> GetResourceOrganisationRelationAsync(Expression<Func<ResourceOrganisationRelation, bool>> predicate, Expression<Func<ResourceOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceOrganisationRelation> |
| orderBy | Expression<Func, object, ResourceOrganisationRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetResourceOrganisationRelationAsync(Expression<Func<ResourceOrganisationRelation, bool>>, params string[])
public Task<ResourceOrganisationRelation?> GetResourceOrganisationRelationAsync(Expression<Func<ResourceOrganisationRelation, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceOrganisationRelation> |
| includeProperties | string |
Returns
GetResourceOrganisationRelationPageAsync(int, int, Expression<Func<ResourceOrganisationRelation, object>>?, bool, Expression<Func<ResourceOrganisationRelation, bool>>?)
public Task<ResourceOrganisationRelation[]> GetResourceOrganisationRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceOrganisationRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceOrganisationRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceOrganisationRelation> |
Returns
| Type |
|---|
Task<ResourceOrganisationRelation>[] |
GetResourceOrganisationRelationPageAsync(int, int, Expression<Func<ResourceOrganisationRelation, bool>>?, params string[])
public Task<ResourceOrganisationRelation[]> GetResourceOrganisationRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceOrganisationRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, ResourceOrganisationRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceOrganisationRelation>[] |
GetResourceOrganisationRelationPageAsync(int, int, Expression<Func<ResourceOrganisationRelation, object>>?, bool, params string[])
public Task<ResourceOrganisationRelation[]> GetResourceOrganisationRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceOrganisationRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceOrganisationRelation>[] |
GetResourceOrganisationRelationPageAsync(int, int, params string[])
public Task<ResourceOrganisationRelation[]> GetResourceOrganisationRelationPageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<ResourceOrganisationRelation>[] |
GetResourceOrganisationRelationPageAsync(string, int, int, Expression<Func<ResourceOrganisationRelation, object>>?, bool, Expression<Func<ResourceOrganisationRelation, bool>>?)
public Task<dynamic> GetResourceOrganisationRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceOrganisationRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceOrganisationRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceOrganisationRelation> |
Returns
| Type |
|---|
Task |
GetResourceOrganisationRelationPageAsync(string, int, int, Expression<Func<ResourceOrganisationRelation, bool>>?, params string[])
public Task<dynamic> GetResourceOrganisationRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceOrganisationRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, ResourceOrganisationRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourceOrganisationRelationPageAsync(string, int, int, Expression<Func<ResourceOrganisationRelation, object>>?, bool, params string[])
public Task<dynamic> GetResourceOrganisationRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceOrganisationRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourceOrganisationRelationPageAsync(string, int, int, params string[])
public Task<dynamic> GetResourceOrganisationRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetResourceOrganisationRelationPropertyAsync(Expression<Func<ResourceOrganisationRelation, bool>>, string, Expression<Func<ResourceOrganisationRelation, object>>?, bool)
public Task<dynamic?> GetResourceOrganisationRelationPropertyAsync(Expression<Func<ResourceOrganisationRelation, bool>> predicate, string selector, Expression<Func<ResourceOrganisationRelation, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceOrganisationRelation> |
| selector | string |
| orderBy | Expression<Func, object, ResourceOrganisationRelation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceOrganisationRelationPropertyOrDefaultAsync(Expression<Func<ResourceOrganisationRelation, bool>>, string, Expression<Func<ResourceOrganisationRelation, object>>?, bool)
public Task<dynamic?> GetResourceOrganisationRelationPropertyOrDefaultAsync(Expression<Func<ResourceOrganisationRelation, bool>> predicate, string selector, Expression<Func<ResourceOrganisationRelation, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceOrganisationRelation> |
| selector | string |
| orderBy | Expression<Func, object, ResourceOrganisationRelation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourcePageAsync(int, int, Expression<Func<Resource, dynamic>>?, bool, Expression<Func<Resource, bool>>?)
public Task<Resource[]> GetResourcePageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<Resource, dynamic>>? orderBy = null, bool orderDescending = true, Expression<Func<Resource, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Resource> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Resource> |
Returns
GetResourcePageAsync(int, int, Expression<Func<Resource, bool>>?, params string[])
public Task<Resource[]> GetResourcePageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<Resource, bool>>? predicate = null, params string[] includeProperties)Parameters
Returns
GetResourcePageAsync(int, int, Expression<Func<Resource, dynamic>>?, bool, params string[])
public Task<Resource[]> GetResourcePageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<Resource, dynamic>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Resource> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetResourcePageAsync(int, int, params string[])
public Task<Resource[]> GetResourcePageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
GetResourcePageAsync(string, int, int, Expression<Func<Resource, dynamic>>?, bool, Expression<Func<Resource, bool>>?)
public Task<dynamic[]> GetResourcePageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<Resource, dynamic>>? orderBy = null, bool orderDescending = true, Expression<Func<Resource, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Resource> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Resource> |
Returns
| Type |
|---|
Task |
GetResourcePageAsync(string, int, int, Expression<Func<Resource, bool>>?, params string[])
public Task<dynamic[]> GetResourcePageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<Resource, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, Resource> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourcePageAsync(string, int, int, Expression<Func<Resource, dynamic>>?, bool, params string[])
public Task<dynamic> GetResourcePageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<Resource, dynamic>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Resource> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourcePageAsync(string, int, int, params string[])
public Task<dynamic> GetResourcePageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetResourcePropertyAsync(Guid, string, Expression<Func<Resource, dynamic>>?, bool)
public Task<dynamic> GetResourcePropertyAsync(Guid resourceId, string selector, Expression<Func<Resource, dynamic>>? orderBy = null, bool orderDescending = true)Parameters
Returns
| Type |
|---|
Task |
GetResourcePropertyAsync(string, string, Expression<Func<Resource, dynamic>>?, bool)
public Task<dynamic> GetResourcePropertyAsync(string resourceId, string selector, Expression<Func<Resource, dynamic>>? orderBy = null, bool orderDescending = true)Parameters
Returns
| Type |
|---|
Task |
GetResourcePropertyAsync(Expression<Func<Resource, bool>>, string, Expression<Func<Resource, dynamic>>?, bool)
public Task<dynamic?> GetResourcePropertyAsync(Expression<Func<Resource, bool>> predicate, string selector, Expression<Func<Resource, dynamic>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Resource> |
| selector | string |
| orderBy | Expression<Func, Resource> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourcePropertyOrDefaultAsync(Guid, string, Expression<Func<Resource, dynamic>>?, bool)
public Task<dynamic?> GetResourcePropertyOrDefaultAsync(Guid resourceId, string selector, Expression<Func<Resource, dynamic>>? orderBy = null, bool orderDescending = true)Parameters
Returns
| Type |
|---|
Task |
GetResourcePropertyOrDefaultAsync(string, string, Expression<Func<Resource, dynamic>>?, bool)
public Task<dynamic?> GetResourcePropertyOrDefaultAsync(string resourceId, string selector, Expression<Func<Resource, dynamic>>? orderBy = null, bool orderDescending = true)Parameters
Returns
| Type |
|---|
Task |
GetResourcePropertyOrDefaultAsync(Expression<Func<Resource, bool>>, string, Expression<Func<Resource, dynamic>>?, bool)
public Task<dynamic?> GetResourcePropertyOrDefaultAsync(Expression<Func<Resource, bool>> predicate, string selector, Expression<Func<Resource, dynamic>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Resource> |
| selector | string |
| orderBy | Expression<Func, Resource> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceRegionRelationAsync(Expression<Func<ResourceRegionRelation, bool>>, Expression<Func<ResourceRegionRelation, object>>?, bool, params string[])
public Task<ResourceRegionRelation?> GetResourceRegionRelationAsync(Expression<Func<ResourceRegionRelation, bool>> predicate, Expression<Func<ResourceRegionRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRegionRelation> |
| orderBy | Expression<Func, object, ResourceRegionRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetResourceRegionRelationAsync(Expression<Func<ResourceRegionRelation, bool>>, params string[])
public Task<ResourceRegionRelation?> GetResourceRegionRelationAsync(Expression<Func<ResourceRegionRelation, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRegionRelation> |
| includeProperties | string |
Returns
GetResourceRegionRelationPageAsync(int, int, Expression<Func<ResourceRegionRelation, object>>?, bool, Expression<Func<ResourceRegionRelation, bool>>?)
public Task<ResourceRegionRelation[]> GetResourceRegionRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRegionRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceRegionRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceRegionRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceRegionRelation> |
Returns
| Type |
|---|
Task<ResourceRegionRelation>[] |
GetResourceRegionRelationPageAsync(int, int, Expression<Func<ResourceRegionRelation, bool>>?, params string[])
public Task<ResourceRegionRelation[]> GetResourceRegionRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRegionRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, ResourceRegionRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceRegionRelation>[] |
GetResourceRegionRelationPageAsync(int, int, Expression<Func<ResourceRegionRelation, object>>?, bool, params string[])
public Task<ResourceRegionRelation[]> GetResourceRegionRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRegionRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceRegionRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceRegionRelation>[] |
GetResourceRegionRelationPageAsync(int, int, params string[])
public Task<ResourceRegionRelation[]> GetResourceRegionRelationPageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<ResourceRegionRelation>[] |
GetResourceRegionRelationPageAsync(string, int, int, Expression<Func<ResourceRegionRelation, object>>?, bool, Expression<Func<ResourceRegionRelation, bool>>?)
public Task<dynamic> GetResourceRegionRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRegionRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceRegionRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceRegionRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceRegionRelation> |
Returns
| Type |
|---|
Task |
GetResourceRegionRelationPageAsync(string, int, int, Expression<Func<ResourceRegionRelation, bool>>?, params string[])
public Task<dynamic> GetResourceRegionRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRegionRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, ResourceRegionRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourceRegionRelationPageAsync(string, int, int, Expression<Func<ResourceRegionRelation, object>>?, bool, params string[])
public Task<dynamic> GetResourceRegionRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRegionRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceRegionRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourceRegionRelationPageAsync(string, int, int, params string[])
public Task<dynamic> GetResourceRegionRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetResourceRegionRelationPropertyAsync(Expression<Func<ResourceRegionRelation, bool>>, string, Expression<Func<ResourceRegionRelation, object>>?, bool)
public Task<dynamic?> GetResourceRegionRelationPropertyAsync(Expression<Func<ResourceRegionRelation, bool>> predicate, string selector, Expression<Func<ResourceRegionRelation, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRegionRelation> |
| selector | string |
| orderBy | Expression<Func, object, ResourceRegionRelation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceRegionRelationPropertyOrDefaultAsync(Expression<Func<ResourceRegionRelation, bool>>, string, Expression<Func<ResourceRegionRelation, object>>?, bool)
public Task<dynamic?> GetResourceRegionRelationPropertyOrDefaultAsync(Expression<Func<ResourceRegionRelation, bool>> predicate, string selector, Expression<Func<ResourceRegionRelation, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRegionRelation> |
| selector | string |
| orderBy | Expression<Func, object, ResourceRegionRelation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceRelatedOrganisationRelationAsync(Expression<Func<ResourceRelatedOrganisationRelation, bool>>, Expression<Func<ResourceRelatedOrganisationRelation, object>>?, bool, params string[])
public Task<ResourceRelatedOrganisationRelation?> GetResourceRelatedOrganisationRelationAsync(Expression<Func<ResourceRelatedOrganisationRelation, bool>> predicate, Expression<Func<ResourceRelatedOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedOrganisationRelation> |
| orderBy | Expression<Func, object, ResourceRelatedOrganisationRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetResourceRelatedOrganisationRelationAsync(Expression<Func<ResourceRelatedOrganisationRelation, bool>>, params string[])
public Task<ResourceRelatedOrganisationRelation?> GetResourceRelatedOrganisationRelationAsync(Expression<Func<ResourceRelatedOrganisationRelation, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedOrganisationRelation> |
| includeProperties | string |
Returns
GetResourceRelatedOrganisationRelationPageAsync(int, int, Expression<Func<ResourceRelatedOrganisationRelation, object>>?, bool, Expression<Func<ResourceRelatedOrganisationRelation, bool>>?)
public Task<ResourceRelatedOrganisationRelation[]> GetResourceRelatedOrganisationRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRelatedOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceRelatedOrganisationRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceRelatedOrganisationRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceRelatedOrganisationRelation> |
Returns
GetResourceRelatedOrganisationRelationPageAsync(int, int, Expression<Func<ResourceRelatedOrganisationRelation, bool>>?, params string[])
public Task<ResourceRelatedOrganisationRelation[]> GetResourceRelatedOrganisationRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRelatedOrganisationRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, ResourceRelatedOrganisationRelation> |
| includeProperties | string |
Returns
GetResourceRelatedOrganisationRelationPageAsync(int, int, Expression<Func<ResourceRelatedOrganisationRelation, object>>?, bool, params string[])
public Task<ResourceRelatedOrganisationRelation[]> GetResourceRelatedOrganisationRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRelatedOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceRelatedOrganisationRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetResourceRelatedOrganisationRelationPageAsync(int, int, params string[])
public Task<ResourceRelatedOrganisationRelation[]> GetResourceRelatedOrganisationRelationPageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
GetResourceRelatedOrganisationRelationPageAsync(string, int, int, Expression<Func<ResourceRelatedOrganisationRelation, object>>?, bool, Expression<Func<ResourceRelatedOrganisationRelation, bool>>?)
public Task<dynamic> GetResourceRelatedOrganisationRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRelatedOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceRelatedOrganisationRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceRelatedOrganisationRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceRelatedOrganisationRelation> |
Returns
| Type |
|---|
Task |
GetResourceRelatedOrganisationRelationPageAsync(string, int, int, Expression<Func<ResourceRelatedOrganisationRelation, bool>>?, params string[])
public Task<dynamic> GetResourceRelatedOrganisationRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRelatedOrganisationRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, ResourceRelatedOrganisationRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourceRelatedOrganisationRelationPageAsync(string, int, int, Expression<Func<ResourceRelatedOrganisationRelation, object>>?, bool, params string[])
public Task<dynamic> GetResourceRelatedOrganisationRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRelatedOrganisationRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceRelatedOrganisationRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourceRelatedOrganisationRelationPageAsync(string, int, int, params string[])
public Task<dynamic> GetResourceRelatedOrganisationRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetResourceRelatedOrganisationRelationPropertyAsync(Expression<Func<ResourceRelatedOrganisationRelation, bool>>, string, Expression<Func<ResourceRelatedOrganisationRelation, object>>?, bool)
public Task<dynamic?> GetResourceRelatedOrganisationRelationPropertyAsync(Expression<Func<ResourceRelatedOrganisationRelation, bool>> predicate, string selector, Expression<Func<ResourceRelatedOrganisationRelation, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedOrganisationRelation> |
| selector | string |
| orderBy | Expression<Func, object, ResourceRelatedOrganisationRelation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceRelatedOrganisationRelationPropertyOrDefaultAsync(Expression<Func<ResourceRelatedOrganisationRelation, bool>>, string, Expression<Func<ResourceRelatedOrganisationRelation, object>>?, bool)
public Task<dynamic?> GetResourceRelatedOrganisationRelationPropertyOrDefaultAsync(Expression<Func<ResourceRelatedOrganisationRelation, bool>> predicate, string selector, Expression<Func<ResourceRelatedOrganisationRelation, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedOrganisationRelation> |
| selector | string |
| orderBy | Expression<Func, object, ResourceRelatedOrganisationRelation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceRelatedPersonRelationAsync(Expression<Func<ResourceRelatedPersonRelation, bool>>, Expression<Func<ResourceRelatedPersonRelation, object>>?, bool, params string[])
public Task<ResourceRelatedPersonRelation?> GetResourceRelatedPersonRelationAsync(Expression<Func<ResourceRelatedPersonRelation, bool>> predicate, Expression<Func<ResourceRelatedPersonRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedPersonRelation> |
| orderBy | Expression<Func, object, ResourceRelatedPersonRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetResourceRelatedPersonRelationAsync(Expression<Func<ResourceRelatedPersonRelation, bool>>, params string[])
public Task<ResourceRelatedPersonRelation?> GetResourceRelatedPersonRelationAsync(Expression<Func<ResourceRelatedPersonRelation, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedPersonRelation> |
| includeProperties | string |
Returns
GetResourceRelatedPersonRelationPageAsync(int, int, Expression<Func<ResourceRelatedPersonRelation, object>>?, bool, Expression<Func<ResourceRelatedPersonRelation, bool>>?)
public Task<ResourceRelatedPersonRelation[]> GetResourceRelatedPersonRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRelatedPersonRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceRelatedPersonRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceRelatedPersonRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceRelatedPersonRelation> |
Returns
GetResourceRelatedPersonRelationPageAsync(int, int, Expression<Func<ResourceRelatedPersonRelation, bool>>?, params string[])
public Task<ResourceRelatedPersonRelation[]> GetResourceRelatedPersonRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRelatedPersonRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, ResourceRelatedPersonRelation> |
| includeProperties | string |
Returns
GetResourceRelatedPersonRelationPageAsync(int, int, Expression<Func<ResourceRelatedPersonRelation, object>>?, bool, params string[])
public Task<ResourceRelatedPersonRelation[]> GetResourceRelatedPersonRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRelatedPersonRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceRelatedPersonRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetResourceRelatedPersonRelationPageAsync(int, int, params string[])
public Task<ResourceRelatedPersonRelation[]> GetResourceRelatedPersonRelationPageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
GetResourceRelatedPersonRelationPageAsync(string, int, int, Expression<Func<ResourceRelatedPersonRelation, object>>?, bool, Expression<Func<ResourceRelatedPersonRelation, bool>>?)
public Task<dynamic> GetResourceRelatedPersonRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRelatedPersonRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceRelatedPersonRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceRelatedPersonRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceRelatedPersonRelation> |
Returns
| Type |
|---|
Task |
GetResourceRelatedPersonRelationPageAsync(string, int, int, Expression<Func<ResourceRelatedPersonRelation, bool>>?, params string[])
public Task<dynamic> GetResourceRelatedPersonRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRelatedPersonRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, ResourceRelatedPersonRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourceRelatedPersonRelationPageAsync(string, int, int, Expression<Func<ResourceRelatedPersonRelation, object>>?, bool, params string[])
public Task<dynamic> GetResourceRelatedPersonRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRelatedPersonRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceRelatedPersonRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourceRelatedPersonRelationPageAsync(string, int, int, params string[])
public Task<dynamic> GetResourceRelatedPersonRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetResourceRelatedPersonRelationPropertyAsync(Expression<Func<ResourceRelatedPersonRelation, bool>>, string, Expression<Func<ResourceRelatedPersonRelation, object>>?, bool)
public Task<dynamic?> GetResourceRelatedPersonRelationPropertyAsync(Expression<Func<ResourceRelatedPersonRelation, bool>> predicate, string selector, Expression<Func<ResourceRelatedPersonRelation, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedPersonRelation> |
| selector | string |
| orderBy | Expression<Func, object, ResourceRelatedPersonRelation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceRelatedPersonRelationPropertyOrDefaultAsync(Expression<Func<ResourceRelatedPersonRelation, bool>>, string, Expression<Func<ResourceRelatedPersonRelation, object>>?, bool)
public Task<dynamic?> GetResourceRelatedPersonRelationPropertyOrDefaultAsync(Expression<Func<ResourceRelatedPersonRelation, bool>> predicate, string selector, Expression<Func<ResourceRelatedPersonRelation, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedPersonRelation> |
| selector | string |
| orderBy | Expression<Func, object, ResourceRelatedPersonRelation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceRelatedSourceRelationAsync(Expression<Func<ResourceRelatedSourceRelation, bool>>, Expression<Func<ResourceRelatedSourceRelation, object>>?, bool, params string[])
public Task<ResourceRelatedSourceRelation?> GetResourceRelatedSourceRelationAsync(Expression<Func<ResourceRelatedSourceRelation, bool>> predicate, Expression<Func<ResourceRelatedSourceRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedSourceRelation> |
| orderBy | Expression<Func, object, ResourceRelatedSourceRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetResourceRelatedSourceRelationAsync(Expression<Func<ResourceRelatedSourceRelation, bool>>, params string[])
public Task<ResourceRelatedSourceRelation?> GetResourceRelatedSourceRelationAsync(Expression<Func<ResourceRelatedSourceRelation, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedSourceRelation> |
| includeProperties | string |
Returns
GetResourceRelatedSourceRelationPageAsync(int, int, Expression<Func<ResourceRelatedSourceRelation, object>>?, bool, Expression<Func<ResourceRelatedSourceRelation, bool>>?)
public Task<ResourceRelatedSourceRelation[]> GetResourceRelatedSourceRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRelatedSourceRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceRelatedSourceRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceRelatedSourceRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceRelatedSourceRelation> |
Returns
GetResourceRelatedSourceRelationPageAsync(int, int, Expression<Func<ResourceRelatedSourceRelation, bool>>?, params string[])
public Task<ResourceRelatedSourceRelation[]> GetResourceRelatedSourceRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRelatedSourceRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, ResourceRelatedSourceRelation> |
| includeProperties | string |
Returns
GetResourceRelatedSourceRelationPageAsync(int, int, Expression<Func<ResourceRelatedSourceRelation, object>>?, bool, params string[])
public Task<ResourceRelatedSourceRelation[]> GetResourceRelatedSourceRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRelatedSourceRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceRelatedSourceRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetResourceRelatedSourceRelationPageAsync(int, int, params string[])
public Task<ResourceRelatedSourceRelation[]> GetResourceRelatedSourceRelationPageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
GetResourceRelatedSourceRelationPageAsync(string, int, int, Expression<Func<ResourceRelatedSourceRelation, object>>?, bool, Expression<Func<ResourceRelatedSourceRelation, bool>>?)
public Task<dynamic> GetResourceRelatedSourceRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRelatedSourceRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceRelatedSourceRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceRelatedSourceRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceRelatedSourceRelation> |
Returns
| Type |
|---|
Task |
GetResourceRelatedSourceRelationPageAsync(string, int, int, Expression<Func<ResourceRelatedSourceRelation, bool>>?, params string[])
public Task<dynamic> GetResourceRelatedSourceRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRelatedSourceRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, ResourceRelatedSourceRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourceRelatedSourceRelationPageAsync(string, int, int, Expression<Func<ResourceRelatedSourceRelation, object>>?, bool, params string[])
public Task<dynamic> GetResourceRelatedSourceRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceRelatedSourceRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceRelatedSourceRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourceRelatedSourceRelationPageAsync(string, int, int, params string[])
public Task<dynamic> GetResourceRelatedSourceRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetResourceRelatedSourceRelationPropertyAsync(Expression<Func<ResourceRelatedSourceRelation, bool>>, string, Expression<Func<ResourceRelatedSourceRelation, object>>?, bool)
public Task<dynamic?> GetResourceRelatedSourceRelationPropertyAsync(Expression<Func<ResourceRelatedSourceRelation, bool>> predicate, string selector, Expression<Func<ResourceRelatedSourceRelation, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedSourceRelation> |
| selector | string |
| orderBy | Expression<Func, object, ResourceRelatedSourceRelation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceRelatedSourceRelationPropertyOrDefaultAsync(Expression<Func<ResourceRelatedSourceRelation, bool>>, string, Expression<Func<ResourceRelatedSourceRelation, object>>?, bool)
public Task<dynamic?> GetResourceRelatedSourceRelationPropertyOrDefaultAsync(Expression<Func<ResourceRelatedSourceRelation, bool>> predicate, string selector, Expression<Func<ResourceRelatedSourceRelation, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedSourceRelation> |
| selector | string |
| orderBy | Expression<Func, object, ResourceRelatedSourceRelation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceSourceRelationAsync(Expression<Func<ResourceSourceRelation, bool>>, Expression<Func<ResourceSourceRelation, object>>?, bool, params string[])
public Task<ResourceSourceRelation?> GetResourceSourceRelationAsync(Expression<Func<ResourceSourceRelation, bool>> predicate, Expression<Func<ResourceSourceRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceSourceRelation> |
| orderBy | Expression<Func, object, ResourceSourceRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetResourceSourceRelationAsync(Expression<Func<ResourceSourceRelation, bool>>, params string[])
public Task<ResourceSourceRelation?> GetResourceSourceRelationAsync(Expression<Func<ResourceSourceRelation, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceSourceRelation> |
| includeProperties | string |
Returns
GetResourceSourceRelationPageAsync(int, int, Expression<Func<ResourceSourceRelation, object>>?, bool, Expression<Func<ResourceSourceRelation, bool>>?)
public Task<ResourceSourceRelation[]> GetResourceSourceRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceSourceRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceSourceRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceSourceRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceSourceRelation> |
Returns
| Type |
|---|
Task<ResourceSourceRelation>[] |
GetResourceSourceRelationPageAsync(int, int, Expression<Func<ResourceSourceRelation, bool>>?, params string[])
public Task<ResourceSourceRelation[]> GetResourceSourceRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceSourceRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, ResourceSourceRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceSourceRelation>[] |
GetResourceSourceRelationPageAsync(int, int, Expression<Func<ResourceSourceRelation, object>>?, bool, params string[])
public Task<ResourceSourceRelation[]> GetResourceSourceRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceSourceRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceSourceRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceSourceRelation>[] |
GetResourceSourceRelationPageAsync(int, int, params string[])
public Task<ResourceSourceRelation[]> GetResourceSourceRelationPageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<ResourceSourceRelation>[] |
GetResourceSourceRelationPageAsync(string, int, int, Expression<Func<ResourceSourceRelation, object>>?, bool, Expression<Func<ResourceSourceRelation, bool>>?)
public Task<dynamic> GetResourceSourceRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceSourceRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceSourceRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceSourceRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceSourceRelation> |
Returns
| Type |
|---|
Task |
GetResourceSourceRelationPageAsync(string, int, int, Expression<Func<ResourceSourceRelation, bool>>?, params string[])
public Task<dynamic> GetResourceSourceRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceSourceRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, ResourceSourceRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourceSourceRelationPageAsync(string, int, int, Expression<Func<ResourceSourceRelation, object>>?, bool, params string[])
public Task<dynamic> GetResourceSourceRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceSourceRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceSourceRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourceSourceRelationPageAsync(string, int, int, params string[])
public Task<dynamic> GetResourceSourceRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetResourceSourceRelationPropertyAsync(Expression<Func<ResourceSourceRelation, bool>>, string, Expression<Func<ResourceSourceRelation, object>>?, bool)
public Task<dynamic?> GetResourceSourceRelationPropertyAsync(Expression<Func<ResourceSourceRelation, bool>> predicate, string selector, Expression<Func<ResourceSourceRelation, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceSourceRelation> |
| selector | string |
| orderBy | Expression<Func, object, ResourceSourceRelation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceSourceRelationPropertyOrDefaultAsync(Expression<Func<ResourceSourceRelation, bool>>, string, Expression<Func<ResourceSourceRelation, object>>?, bool)
public Task<dynamic?> GetResourceSourceRelationPropertyOrDefaultAsync(Expression<Func<ResourceSourceRelation, bool>> predicate, string selector, Expression<Func<ResourceSourceRelation, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceSourceRelation> |
| selector | string |
| orderBy | Expression<Func, object, ResourceSourceRelation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceTagRelationAsync(Expression<Func<ResourceTagRelation, bool>>, Expression<Func<ResourceTagRelation, object>>?, bool, params string[])
public Task<ResourceTagRelation?> GetResourceTagRelationAsync(Expression<Func<ResourceTagRelation, bool>> predicate, Expression<Func<ResourceTagRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceTagRelation> |
| orderBy | Expression<Func, object, ResourceTagRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceTagRelation> |
GetResourceTagRelationAsync(Expression<Func<ResourceTagRelation, bool>>, params string[])
public Task<ResourceTagRelation?> GetResourceTagRelationAsync(Expression<Func<ResourceTagRelation, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceTagRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceTagRelation> |
GetResourceTagRelationPageAsync(int, int, Expression<Func<ResourceTagRelation, object>>?, bool, Expression<Func<ResourceTagRelation, bool>>?)
public Task<ResourceTagRelation[]> GetResourceTagRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceTagRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceTagRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceTagRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceTagRelation> |
Returns
| Type |
|---|
Task<ResourceTagRelation>[] |
GetResourceTagRelationPageAsync(int, int, Expression<Func<ResourceTagRelation, bool>>?, params string[])
public Task<ResourceTagRelation[]> GetResourceTagRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceTagRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, ResourceTagRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceTagRelation>[] |
GetResourceTagRelationPageAsync(int, int, Expression<Func<ResourceTagRelation, object>>?, bool, params string[])
public Task<ResourceTagRelation[]> GetResourceTagRelationPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceTagRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceTagRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceTagRelation>[] |
GetResourceTagRelationPageAsync(int, int, params string[])
public Task<ResourceTagRelation[]> GetResourceTagRelationPageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<ResourceTagRelation>[] |
GetResourceTagRelationPageAsync(string, int, int, Expression<Func<ResourceTagRelation, object>>?, bool, Expression<Func<ResourceTagRelation, bool>>?)
public Task<dynamic> GetResourceTagRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceTagRelation, object>>? orderBy = null, bool orderDescending = true, Expression<Func<ResourceTagRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceTagRelation> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceTagRelation> |
Returns
| Type |
|---|
Task |
GetResourceTagRelationPageAsync(string, int, int, Expression<Func<ResourceTagRelation, bool>>?, params string[])
public Task<dynamic> GetResourceTagRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceTagRelation, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, ResourceTagRelation> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourceTagRelationPageAsync(string, int, int, Expression<Func<ResourceTagRelation, object>>?, bool, params string[])
public Task<dynamic> GetResourceTagRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceTagRelation, object>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, object, ResourceTagRelation> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourceTagRelationPageAsync(string, int, int, params string[])
public Task<dynamic> GetResourceTagRelationPageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetResourceTagRelationPropertyAsync(Expression<Func<ResourceTagRelation, bool>>, string, Expression<Func<ResourceTagRelation, object>>?, bool)
public Task<dynamic?> GetResourceTagRelationPropertyAsync(Expression<Func<ResourceTagRelation, bool>> predicate, string selector, Expression<Func<ResourceTagRelation, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceTagRelation> |
| selector | string |
| orderBy | Expression<Func, object, ResourceTagRelation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceTagRelationPropertyOrDefaultAsync(Expression<Func<ResourceTagRelation, bool>>, string, Expression<Func<ResourceTagRelation, object>>?, bool)
public Task<dynamic?> GetResourceTagRelationPropertyOrDefaultAsync(Expression<Func<ResourceTagRelation, bool>> predicate, string selector, Expression<Func<ResourceTagRelation, object>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceTagRelation> |
| selector | string |
| orderBy | Expression<Func, object, ResourceTagRelation> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceTrashItemsPageAsync(int, int, Expression<Func<ResourceTrashItem, dynamic>>?, bool?, Expression<Func<ResourceTrashItem, bool>>?, params string[])
public Task<ResourceTrashItem[]> GetResourceTrashItemsPageAsync(int pageIndex, int pageSize, Expression<Func<ResourceTrashItem, dynamic>>? orderBy = null, bool? orderDescending = null, Expression<Func<ResourceTrashItem, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, ResourceTrashItem> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceTrashItem> |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceTrashItem>[] |
GetResourceTrashItemsPageAsync(int, int, string, Expression<Func<ResourceTrashItem, dynamic>>?, bool?, Expression<Func<ResourceTrashItem, bool>>?, params string[])
public Task<dynamic[]> GetResourceTrashItemsPageAsync(int pageIndex, int pageSize, string projection, Expression<Func<ResourceTrashItem, dynamic>>? orderBy = null, bool? orderDescending = null, Expression<Func<ResourceTrashItem, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| projection | string |
| orderBy | Expression<Func, ResourceTrashItem> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceTrashItem> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourceTypeAsync(Guid)
public Task<ResourceType?> GetResourceTypeAsync(Guid id)Parameters
| Name | Type |
|---|---|
| id | Guid |
Returns
| Type |
|---|
Task<ResourceType> |
GetResourceTypeAsync(string)
public Task<ResourceType?> GetResourceTypeAsync(string id)Parameters
| Name | Type |
|---|---|
| id | string |
Returns
| Type |
|---|
Task<ResourceType> |
GetResourceTypeAsync(Expression<Func<ResourceType, bool>>, Expression<Func<ResourceType, dynamic>>?, bool, params string[])
public Task<ResourceType?> GetResourceTypeAsync(Expression<Func<ResourceType, bool>> predicate, Expression<Func<ResourceType, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceType> |
| orderBy | Expression<Func, ResourceType> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceType> |
GetResourceTypeAsync(Guid, Expression<Func<ResourceType, dynamic>>?, bool, params string[])
public Task<ResourceType?> GetResourceTypeAsync(Guid id, Expression<Func<ResourceType, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| id | Guid |
| orderBy | Expression<Func, ResourceType> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceType> |
GetResourceTypeAsync(string, Expression<Func<ResourceType, dynamic>>?, bool, params string[])
public Task<ResourceType?> GetResourceTypeAsync(string id, Expression<Func<ResourceType, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| id | string |
| orderBy | Expression<Func, ResourceType> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceType> |
GetResourceTypeAsync(Expression<Func<ResourceType, bool>>, params string[])
public Task<ResourceType?> GetResourceTypeAsync(Expression<Func<ResourceType, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceType> |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceType> |
GetResourceTypeAsync(Guid, params string[])
public Task<ResourceType?> GetResourceTypeAsync(Guid id, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<ResourceType> |
GetResourceTypeAsync(string, params string[])
public Task<ResourceType?> GetResourceTypeAsync(string id, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<ResourceType> |
GetResourceTypePageAsync(int, int, Expression<Func<ResourceType, dynamic>>?, bool, Expression<Func<ResourceType, bool>>?)
public Task<ResourceType[]> GetResourceTypePageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceType, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<ResourceType, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, ResourceType> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceType> |
Returns
| Type |
|---|
Task<ResourceType>[] |
GetResourceTypePageAsync(int, int, Expression<Func<ResourceType, bool>>?, params string[])
public Task<ResourceType[]> GetResourceTypePageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceType, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, ResourceType> |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceType>[] |
GetResourceTypePageAsync(int, int, Expression<Func<ResourceType, dynamic>>?, bool, params string[])
public Task<ResourceType[]> GetResourceTypePageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceType, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, ResourceType> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<ResourceType>[] |
GetResourceTypePageAsync(int, int, params string[])
public Task<ResourceType[]> GetResourceTypePageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<ResourceType>[] |
GetResourceTypePageAsync(string, int, int, Expression<Func<ResourceType, dynamic>>?, bool, Expression<Func<ResourceType, bool>>?)
public Task<dynamic> GetResourceTypePageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceType, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<ResourceType, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, ResourceType> |
| orderDescending | bool |
| predicate | Expression<Func, bool, ResourceType> |
Returns
| Type |
|---|
Task |
GetResourceTypePageAsync(string, int, int, Expression<Func<ResourceType, bool>>?, params string[])
public Task<dynamic> GetResourceTypePageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceType, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, ResourceType> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourceTypePageAsync(string, int, int, Expression<Func<ResourceType, dynamic>>?, bool, params string[])
public Task<dynamic> GetResourceTypePageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<ResourceType, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, ResourceType> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetResourceTypePageAsync(string, int, int, params string[])
public Task<dynamic> GetResourceTypePageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetResourceTypePropertyAsync(Guid, string, Expression<Func<ResourceType, dynamic>>?, bool)
public Task<dynamic> GetResourceTypePropertyAsync(Guid resourceTypeId, string selector, Expression<Func<ResourceType, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| resourceTypeId | Guid |
| selector | string |
| orderBy | Expression<Func, ResourceType> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceTypePropertyAsync(string, string, Expression<Func<ResourceType, dynamic>>?, bool)
public Task<dynamic> GetResourceTypePropertyAsync(string resourceTypeId, string selector, Expression<Func<ResourceType, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| resourceTypeId | string |
| selector | string |
| orderBy | Expression<Func, ResourceType> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceTypePropertyAsync(Expression<Func<ResourceType, bool>>, string, Expression<Func<ResourceType, dynamic>>?, bool)
public Task<dynamic> GetResourceTypePropertyAsync(Expression<Func<ResourceType, bool>> predicate, string selector, Expression<Func<ResourceType, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceType> |
| selector | string |
| orderBy | Expression<Func, ResourceType> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceTypePropertyOrDefaultAsync(Guid, string, Expression<Func<ResourceType, dynamic>>?, bool)
public Task<dynamic?> GetResourceTypePropertyOrDefaultAsync(Guid resourceTypeId, string selector, Expression<Func<ResourceType, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| resourceTypeId | Guid |
| selector | string |
| orderBy | Expression<Func, ResourceType> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceTypePropertyOrDefaultAsync(string, string, Expression<Func<ResourceType, dynamic>>?, bool)
public Task<dynamic?> GetResourceTypePropertyOrDefaultAsync(string resourceTypeId, string selector, Expression<Func<ResourceType, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| resourceTypeId | string |
| selector | string |
| orderBy | Expression<Func, ResourceType> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetResourceTypePropertyOrDefaultAsync(Expression<Func<ResourceType, bool>>, string, Expression<Func<ResourceType, dynamic>>?, bool)
public Task<dynamic?> GetResourceTypePropertyOrDefaultAsync(Expression<Func<ResourceType, bool>> predicate, string selector, Expression<Func<ResourceType, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceType> |
| selector | string |
| orderBy | Expression<Func, ResourceType> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetTagAsync(Guid)
public Task<Tag?> GetTagAsync(Guid id)Parameters
| Name | Type |
|---|---|
| id | Guid |
Returns
GetTagAsync(string)
public Task<Tag?> GetTagAsync(string id)Parameters
| Name | Type |
|---|---|
| id | string |
Returns
GetTagAsync(Expression<Func<Tag, bool>>, Expression<Func<Tag, dynamic>>?, bool, params string[])
public Task<Tag?> GetTagAsync(Expression<Func<Tag, bool>> predicate, Expression<Func<Tag, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Tag> |
| orderBy | Expression<Func, Tag> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetTagAsync(Guid, Expression<Func<Tag, dynamic>>?, bool, params string[])
public Task<Tag?> GetTagAsync(Guid id, Expression<Func<Tag, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
Returns
GetTagAsync(string, Expression<Func<Tag, dynamic>>?, bool, params string[])
public Task<Tag?> GetTagAsync(string id, Expression<Func<Tag, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
Returns
GetTagAsync(Expression<Func<Tag, bool>>, params string[])
public Task<Tag?> GetTagAsync(Expression<Func<Tag, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Tag> |
| includeProperties | string |
Returns
GetTagAsync(Guid, params string[])
public Task<Tag?> GetTagAsync(Guid id, params string[] includeProperties)Parameters
Returns
GetTagAsync(string, params string[])
public Task<Tag?> GetTagAsync(string id, params string[] includeProperties)Parameters
Returns
GetTagPageAsync(int, int, Expression<Func<Tag, dynamic>>?, bool, Expression<Func<Tag, bool>>?)
public Task<Tag[]> GetTagPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<Tag, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<Tag, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Tag> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Tag> |
Returns
GetTagPageAsync(int, int, Expression<Func<Tag, bool>>?, params string[])
public Task<Tag[]> GetTagPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<Tag, bool>>? predicate = null, params string[] includeProperties)Parameters
Returns
GetTagPageAsync(int, int, Expression<Func<Tag, dynamic>>?, bool, params string[])
public Task<Tag[]> GetTagPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<Tag, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Tag> |
| orderDescending | bool |
| includeProperties | string |
Returns
GetTagPageAsync(int, int, params string[])
public Task<Tag[]> GetTagPageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
GetTagPageAsync(string, int, int, Expression<Func<Tag, dynamic>>?, bool, Expression<Func<Tag, bool>>?)
public Task<dynamic> GetTagPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<Tag, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<Tag, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Tag> |
| orderDescending | bool |
| predicate | Expression<Func, bool, Tag> |
Returns
| Type |
|---|
Task |
GetTagPageAsync(string, int, int, Expression<Func<Tag, bool>>?, params string[])
public Task<dynamic> GetTagPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<Tag, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, Tag> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetTagPageAsync(string, int, int, Expression<Func<Tag, dynamic>>?, bool, params string[])
public Task<dynamic> GetTagPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<Tag, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, Tag> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetTagPageAsync(string, int, int, params string[])
public Task<dynamic> GetTagPageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetTagPropertyAsync(Guid, string, Expression<Func<Tag, dynamic>>?, bool)
public Task<dynamic> GetTagPropertyAsync(Guid TagId, string selector, Expression<Func<Tag, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
Returns
| Type |
|---|
Task |
GetTagPropertyAsync(string, string, Expression<Func<Tag, dynamic>>?, bool)
public Task<dynamic> GetTagPropertyAsync(string TagId, string selector, Expression<Func<Tag, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
Returns
| Type |
|---|
Task |
GetTagPropertyAsync(Expression<Func<Tag, bool>>, string, Expression<Func<Tag, dynamic>>?, bool)
public Task<dynamic> GetTagPropertyAsync(Expression<Func<Tag, bool>> predicate, string selector, Expression<Func<Tag, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Tag> |
| selector | string |
| orderBy | Expression<Func, Tag> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetTagPropertyOrDefaultAsync(Guid, string, Expression<Func<Tag, dynamic>>?, bool)
public Task<dynamic?> GetTagPropertyOrDefaultAsync(Guid TagId, string selector, Expression<Func<Tag, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
Returns
| Type |
|---|
Task |
GetTagPropertyOrDefaultAsync(string, string, Expression<Func<Tag, dynamic>>?, bool)
public Task<dynamic?> GetTagPropertyOrDefaultAsync(string TagId, string selector, Expression<Func<Tag, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
Returns
| Type |
|---|
Task |
GetTagPropertyOrDefaultAsync(Expression<Func<Tag, bool>>, string, Expression<Func<Tag, dynamic>>?, bool)
public Task<dynamic?> GetTagPropertyOrDefaultAsync(Expression<Func<Tag, bool>> predicate, string selector, Expression<Func<Tag, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Tag> |
| selector | string |
| orderBy | Expression<Func, Tag> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetVideoMetadataAsync(Guid)
public Task<VideoMetadata?> GetVideoMetadataAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
| Type |
|---|
Task<VideoMetadata> |
GetVideoMetadataAsync(string)
public Task<VideoMetadata?> GetVideoMetadataAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
| Type |
|---|
Task<VideoMetadata> |
GetVideoMetadataAsync(Expression<Func<VideoMetadata, bool>>, Expression<Func<VideoMetadata, dynamic>>?, bool, params string[])
public Task<VideoMetadata?> GetVideoMetadataAsync(Expression<Func<VideoMetadata, bool>> predicate, Expression<Func<VideoMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, VideoMetadata> |
| orderBy | Expression<Func, VideoMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<VideoMetadata> |
GetVideoMetadataAsync(Guid, Expression<Func<VideoMetadata, dynamic>>?, bool, params string[])
public Task<VideoMetadata?> GetVideoMetadataAsync(Guid resourceId, Expression<Func<VideoMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
| orderBy | Expression<Func, VideoMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<VideoMetadata> |
GetVideoMetadataAsync(string, Expression<Func<VideoMetadata, dynamic>>?, bool, params string[])
public Task<VideoMetadata?> GetVideoMetadataAsync(string resourceId, Expression<Func<VideoMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| resourceId | string |
| orderBy | Expression<Func, VideoMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<VideoMetadata> |
GetVideoMetadataAsync(Expression<Func<VideoMetadata, bool>>, params string[])
public Task<VideoMetadata?> GetVideoMetadataAsync(Expression<Func<VideoMetadata, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, VideoMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task<VideoMetadata> |
GetVideoMetadataAsync(Guid, params string[])
public Task<VideoMetadata?> GetVideoMetadataAsync(Guid resourceId, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<VideoMetadata> |
GetVideoMetadataAsync(string, params string[])
public Task<VideoMetadata?> GetVideoMetadataAsync(string resourceId, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<VideoMetadata> |
GetVideoMetadataPageAsync(int, int, Expression<Func<VideoMetadata, dynamic>>?, bool, Expression<Func<VideoMetadata, bool>>?)
public Task<VideoMetadata[]> GetVideoMetadataPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<VideoMetadata, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<VideoMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, VideoMetadata> |
| orderDescending | bool |
| predicate | Expression<Func, bool, VideoMetadata> |
Returns
| Type |
|---|
Task<VideoMetadata>[] |
GetVideoMetadataPageAsync(int, int, Expression<Func<VideoMetadata, bool>>?, params string[])
public Task<VideoMetadata[]> GetVideoMetadataPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<VideoMetadata, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, VideoMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task<VideoMetadata>[] |
GetVideoMetadataPageAsync(int, int, Expression<Func<VideoMetadata, dynamic>>?, bool, params string[])
public Task<VideoMetadata[]> GetVideoMetadataPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<VideoMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, VideoMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<VideoMetadata>[] |
GetVideoMetadataPageAsync(int, int, params string[])
public Task<VideoMetadata[]> GetVideoMetadataPageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<VideoMetadata>[] |
GetVideoMetadataPageAsync(string, int, int, Expression<Func<VideoMetadata, dynamic>>?, bool, Expression<Func<VideoMetadata, bool>>?)
public Task<dynamic> GetVideoMetadataPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<VideoMetadata, dynamic>>? orderBy = null, bool orderDescending = false, Expression<Func<VideoMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, VideoMetadata> |
| orderDescending | bool |
| predicate | Expression<Func, bool, VideoMetadata> |
Returns
| Type |
|---|
Task |
GetVideoMetadataPageAsync(string, int, int, Expression<Func<VideoMetadata, bool>>?, params string[])
public Task<dynamic> GetVideoMetadataPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<VideoMetadata, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, VideoMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetVideoMetadataPageAsync(string, int, int, Expression<Func<VideoMetadata, dynamic>>?, bool, params string[])
public Task<dynamic> GetVideoMetadataPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<VideoMetadata, dynamic>>? orderBy = null, bool orderDescending = false, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, VideoMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetVideoMetadataPageAsync(string, int, int, params string[])
public Task<dynamic> GetVideoMetadataPageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetVideoMetadataPropertyAsync(Guid, string, Expression<Func<VideoMetadata, dynamic>>?, bool)
public Task<dynamic> GetVideoMetadataPropertyAsync(Guid resourceId, string selector, Expression<Func<VideoMetadata, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
| selector | string |
| orderBy | Expression<Func, VideoMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetVideoMetadataPropertyAsync(string, string, Expression<Func<VideoMetadata, dynamic>>?, bool)
public Task<dynamic> GetVideoMetadataPropertyAsync(string resourceId, string selector, Expression<Func<VideoMetadata, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| resourceId | string |
| selector | string |
| orderBy | Expression<Func, VideoMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetVideoMetadataPropertyAsync(Expression<Func<VideoMetadata, bool>>, string, Expression<Func<VideoMetadata, dynamic>>?, bool)
public Task<dynamic> GetVideoMetadataPropertyAsync(Expression<Func<VideoMetadata, bool>> predicate, string selector, Expression<Func<VideoMetadata, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, VideoMetadata> |
| selector | string |
| orderBy | Expression<Func, VideoMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetVideoMetadataPropertyOrDefaultAsync(Guid, string, Expression<Func<VideoMetadata, dynamic>>?, bool)
public Task<dynamic?> GetVideoMetadataPropertyOrDefaultAsync(Guid resourceId, string selector, Expression<Func<VideoMetadata, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
| selector | string |
| orderBy | Expression<Func, VideoMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetVideoMetadataPropertyOrDefaultAsync(string, string, Expression<Func<VideoMetadata, dynamic>>?, bool)
public Task<dynamic?> GetVideoMetadataPropertyOrDefaultAsync(string resourceId, string selector, Expression<Func<VideoMetadata, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| resourceId | string |
| selector | string |
| orderBy | Expression<Func, VideoMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetVideoMetadataPropertyOrDefaultAsync(Expression<Func<VideoMetadata, bool>>, string, Expression<Func<VideoMetadata, dynamic>>?, bool)
public Task<dynamic?> GetVideoMetadataPropertyOrDefaultAsync(Expression<Func<VideoMetadata, bool>> predicate, string selector, Expression<Func<VideoMetadata, dynamic>>? orderBy = null, bool orderDescending = false)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, VideoMetadata> |
| selector | string |
| orderBy | Expression<Func, VideoMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetWebsiteMetadataAsync(Guid)
public Task<WebsiteMetadata?> GetWebsiteMetadataAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
| Type |
|---|
Task<WebsiteMetadata> |
GetWebsiteMetadataAsync(string)
public Task<WebsiteMetadata?> GetWebsiteMetadataAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
| Type |
|---|
Task<WebsiteMetadata> |
GetWebsiteMetadataAsync(Expression<Func<WebsiteMetadata, bool>>, Expression<Func<WebsiteMetadata, dynamic>>?, bool, params string[])
public Task<WebsiteMetadata?> GetWebsiteMetadataAsync(Expression<Func<WebsiteMetadata, bool>> predicate, Expression<Func<WebsiteMetadata, dynamic>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, WebsiteMetadata> |
| orderBy | Expression<Func, WebsiteMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<WebsiteMetadata> |
GetWebsiteMetadataAsync(Guid, Expression<Func<WebsiteMetadata, dynamic>>?, bool, params string[])
public Task<WebsiteMetadata?> GetWebsiteMetadataAsync(Guid resourceId, Expression<Func<WebsiteMetadata, dynamic>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
| orderBy | Expression<Func, WebsiteMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<WebsiteMetadata> |
GetWebsiteMetadataAsync(string, Expression<Func<WebsiteMetadata, dynamic>>?, bool, params string[])
public Task<WebsiteMetadata?> GetWebsiteMetadataAsync(string resourceId, Expression<Func<WebsiteMetadata, dynamic>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| resourceId | string |
| orderBy | Expression<Func, WebsiteMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<WebsiteMetadata> |
GetWebsiteMetadataAsync(Expression<Func<WebsiteMetadata, bool>>, params string[])
public Task<WebsiteMetadata?> GetWebsiteMetadataAsync(Expression<Func<WebsiteMetadata, bool>> predicate, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, WebsiteMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task<WebsiteMetadata> |
GetWebsiteMetadataAsync(Guid, params string[])
public Task<WebsiteMetadata?> GetWebsiteMetadataAsync(Guid resourceId, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<WebsiteMetadata> |
GetWebsiteMetadataAsync(string, params string[])
public Task<WebsiteMetadata?> GetWebsiteMetadataAsync(string resourceId, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<WebsiteMetadata> |
GetWebsiteMetadataPageAsync(int, int, Expression<Func<WebsiteMetadata, dynamic>>?, bool, Expression<Func<WebsiteMetadata, bool>>?)
public Task<WebsiteMetadata[]> GetWebsiteMetadataPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<WebsiteMetadata, dynamic>>? orderBy = null, bool orderDescending = true, Expression<Func<WebsiteMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, WebsiteMetadata> |
| orderDescending | bool |
| predicate | Expression<Func, bool, WebsiteMetadata> |
Returns
| Type |
|---|
Task<WebsiteMetadata>[] |
GetWebsiteMetadataPageAsync(int, int, Expression<Func<WebsiteMetadata, bool>>?, params string[])
public Task<WebsiteMetadata[]> GetWebsiteMetadataPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<WebsiteMetadata, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, WebsiteMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task<WebsiteMetadata>[] |
GetWebsiteMetadataPageAsync(int, int, Expression<Func<WebsiteMetadata, dynamic>>?, bool, params string[])
public Task<WebsiteMetadata[]> GetWebsiteMetadataPageAsync(int pageIndex = 1, int pageSize = 100, Expression<Func<WebsiteMetadata, dynamic>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, WebsiteMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task<WebsiteMetadata>[] |
GetWebsiteMetadataPageAsync(int, int, params string[])
public Task<WebsiteMetadata[]> GetWebsiteMetadataPageAsync(int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task<WebsiteMetadata>[] |
GetWebsiteMetadataPageAsync(string, int, int, Expression<Func<WebsiteMetadata, dynamic>>?, bool, Expression<Func<WebsiteMetadata, bool>>?)
public Task<dynamic> GetWebsiteMetadataPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<WebsiteMetadata, dynamic>>? orderBy = null, bool orderDescending = true, Expression<Func<WebsiteMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, WebsiteMetadata> |
| orderDescending | bool |
| predicate | Expression<Func, bool, WebsiteMetadata> |
Returns
| Type |
|---|
Task |
GetWebsiteMetadataPageAsync(string, int, int, Expression<Func<WebsiteMetadata, bool>>?, params string[])
public Task<dynamic> GetWebsiteMetadataPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<WebsiteMetadata, bool>>? predicate = null, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| predicate | Expression<Func, bool, WebsiteMetadata> |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetWebsiteMetadataPageAsync(string, int, int, Expression<Func<WebsiteMetadata, dynamic>>?, bool, params string[])
public Task<dynamic> GetWebsiteMetadataPageAsync(string projection, int pageIndex = 1, int pageSize = 100, Expression<Func<WebsiteMetadata, dynamic>>? orderBy = null, bool orderDescending = true, params string[] includeProperties)Parameters
| Name | Type |
|---|---|
| projection | string |
| pageIndex | int |
| pageSize | int |
| orderBy | Expression<Func, WebsiteMetadata> |
| orderDescending | bool |
| includeProperties | string |
Returns
| Type |
|---|
Task |
GetWebsiteMetadataPageAsync(string, int, int, params string[])
public Task<dynamic> GetWebsiteMetadataPageAsync(string projection, int pageIndex = 1, int pageSize = 100, params string[] includeProperties)Parameters
Returns
| Type |
|---|
Task |
GetWebsiteMetadataPropertyAsync(Guid, string, Expression<Func<WebsiteMetadata, dynamic>>?, bool)
public Task<dynamic> GetWebsiteMetadataPropertyAsync(Guid resourceId, string selector, Expression<Func<WebsiteMetadata, dynamic>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
| selector | string |
| orderBy | Expression<Func, WebsiteMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetWebsiteMetadataPropertyAsync(string, string, Expression<Func<WebsiteMetadata, dynamic>>?, bool)
public Task<dynamic> GetWebsiteMetadataPropertyAsync(string resourceId, string selector, Expression<Func<WebsiteMetadata, dynamic>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| resourceId | string |
| selector | string |
| orderBy | Expression<Func, WebsiteMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetWebsiteMetadataPropertyAsync(Expression<Func<WebsiteMetadata, bool>>, string, Expression<Func<WebsiteMetadata, dynamic>>?, bool)
public Task<dynamic> GetWebsiteMetadataPropertyAsync(Expression<Func<WebsiteMetadata, bool>> predicate, string selector, Expression<Func<WebsiteMetadata, dynamic>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, WebsiteMetadata> |
| selector | string |
| orderBy | Expression<Func, WebsiteMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetWebsiteMetadataPropertyOrDefaultAsync(Guid, string, Expression<Func<WebsiteMetadata, dynamic>>?, bool)
public Task<dynamic?> GetWebsiteMetadataPropertyOrDefaultAsync(Guid resourceId, string selector, Expression<Func<WebsiteMetadata, dynamic>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
| selector | string |
| orderBy | Expression<Func, WebsiteMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetWebsiteMetadataPropertyOrDefaultAsync(string, string, Expression<Func<WebsiteMetadata, dynamic>>?, bool)
public Task<dynamic?> GetWebsiteMetadataPropertyOrDefaultAsync(string resourceId, string selector, Expression<Func<WebsiteMetadata, dynamic>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| resourceId | string |
| selector | string |
| orderBy | Expression<Func, WebsiteMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
GetWebsiteMetadataPropertyOrDefaultAsync(Expression<Func<WebsiteMetadata, bool>>, string, Expression<Func<WebsiteMetadata, dynamic>>?, bool)
public Task<dynamic?> GetWebsiteMetadataPropertyOrDefaultAsync(Expression<Func<WebsiteMetadata, bool>> predicate, string selector, Expression<Func<WebsiteMetadata, dynamic>>? orderBy = null, bool orderDescending = true)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, WebsiteMetadata> |
| selector | string |
| orderBy | Expression<Func, WebsiteMetadata> |
| orderDescending | bool |
Returns
| Type |
|---|
Task |
OrganisationExistsAsync(Guid)
public Task<bool> OrganisationExistsAsync(Guid organisationId)Parameters
| Name | Type |
|---|---|
| organisationId | Guid |
Returns
OrganisationExistsAsync(string)
public Task<bool> OrganisationExistsAsync(string organisationId)Parameters
| Name | Type |
|---|---|
| organisationId | string |
Returns
OrganisationExistsAsync(Expression<Func<Organisation, bool>>)
public Task<bool> OrganisationExistsAsync(Expression<Func<Organisation, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Organisation> |
Returns
OrganisationRelationshipCountAsync(Expression<Func<OrganisationRelationship, bool>>?)
public Task<int> OrganisationRelationshipCountAsync(Expression<Func<OrganisationRelationship, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, OrganisationRelationship> |
Returns
OrganisationRelationshipExistsAsync(Expression<Func<OrganisationRelationship, bool>>)
public Task<bool> OrganisationRelationshipExistsAsync(Expression<Func<OrganisationRelationship, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, OrganisationRelationship> |
Returns
PersonCountAsync(Expression<Func<Person, bool>>?)
public Task<int> PersonCountAsync(Expression<Func<Person, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Person> |
Returns
PersonExistsAsync(Guid)
public Task<bool> PersonExistsAsync(Guid personId)Parameters
| Name | Type |
|---|---|
| personId | Guid |
Returns
PersonExistsAsync(string)
public Task<bool> PersonExistsAsync(string personId)Parameters
| Name | Type |
|---|---|
| personId | string |
Returns
PersonExistsAsync(Expression<Func<Person, bool>>)
public Task<bool> PersonExistsAsync(Expression<Func<Person, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Person> |
Returns
PersonOrganisationRelationCountAsync(Expression<Func<PersonOrganisationRelation, bool>>?)
public Task<int> PersonOrganisationRelationCountAsync(Expression<Func<PersonOrganisationRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, PersonOrganisationRelation> |
Returns
PersonOrganisationRelationExistsAsync(Expression<Func<PersonOrganisationRelation, bool>>)
public Task<bool> PersonOrganisationRelationExistsAsync(Expression<Func<PersonOrganisationRelation, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, PersonOrganisationRelation> |
Returns
PersonRelationshipCountAsync(Expression<Func<PersonRelationship, bool>>?)
public Task<int> PersonRelationshipCountAsync(Expression<Func<PersonRelationship, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, PersonRelationship> |
Returns
PersonRelationshipExistsAsync(Expression<Func<PersonRelationship, bool>>)
public Task<bool> PersonRelationshipExistsAsync(Expression<Func<PersonRelationship, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, PersonRelationship> |
Returns
RegionCountAsync(Expression<Func<Region, bool>>?)
public Task<int> RegionCountAsync(Expression<Func<Region, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Region> |
Returns
RegionExistsAsync(Guid)
public Task<bool> RegionExistsAsync(Guid regionId)Parameters
| Name | Type |
|---|---|
| regionId | Guid |
Returns
RegionExistsAsync(string)
public Task<bool> RegionExistsAsync(string regionId)Parameters
| Name | Type |
|---|---|
| regionId | string |
Returns
RegionExistsAsync(Expression<Func<Region, bool>>)
public Task<bool> RegionExistsAsync(Expression<Func<Region, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Region> |
Returns
RemoveAllOrganisationRelationshipsContainingIdAsync(Guid)
public Task<bool> RemoveAllOrganisationRelationshipsContainingIdAsync(Guid organisationId)Parameters
| Name | Type |
|---|---|
| organisationId | Guid |
Returns
RemoveAllOrganisationRelationshipsContainingIdAsync(string)
public Task<bool> RemoveAllOrganisationRelationshipsContainingIdAsync(string organisationId)Parameters
| Name | Type |
|---|---|
| organisationId | string |
Returns
RemoveAllOrganisationRelationshipsWithSourceIdAsync(Guid)
public Task<bool> RemoveAllOrganisationRelationshipsWithSourceIdAsync(Guid sourceOrganisationId)Parameters
| Name | Type |
|---|---|
| sourceOrganisationId | Guid |
Returns
RemoveAllOrganisationRelationshipsWithSourceIdAsync(string)
public Task<bool> RemoveAllOrganisationRelationshipsWithSourceIdAsync(string sourceOrganisationId)Parameters
| Name | Type |
|---|---|
| sourceOrganisationId | string |
Returns
RemoveAllOrganisationRelationshipsWithTargetIdAsync(Guid)
public Task<bool> RemoveAllOrganisationRelationshipsWithTargetIdAsync(Guid targetOrganisationId)Parameters
| Name | Type |
|---|---|
| targetOrganisationId | Guid |
Returns
RemoveAllOrganisationRelationshipsWithTargetIdAsync(string)
public Task<bool> RemoveAllOrganisationRelationshipsWithTargetIdAsync(string targetOrganisationId)Parameters
| Name | Type |
|---|---|
| targetOrganisationId | string |
Returns
RemoveAllPersonOrganisationRealtionsWithOrganisationIdAsync(string)
public Task<bool> RemoveAllPersonOrganisationRealtionsWithOrganisationIdAsync(string organisationId)Parameters
| Name | Type |
|---|---|
| organisationId | string |
Returns
RemoveAllPersonOrganisationRelationsWithOrganisationIdAsync(Guid)
public Task<bool> RemoveAllPersonOrganisationRelationsWithOrganisationIdAsync(Guid organisationId)Parameters
| Name | Type |
|---|---|
| organisationId | Guid |
Returns
RemoveAllPersonRelationshipsContainingIdAsync(Guid)
public Task<bool> RemoveAllPersonRelationshipsContainingIdAsync(Guid personId)Parameters
| Name | Type |
|---|---|
| personId | Guid |
Returns
RemoveAllPersonRelationshipsContainingIdAsync(string)
public Task<bool> RemoveAllPersonRelationshipsContainingIdAsync(string personId)Parameters
| Name | Type |
|---|---|
| personId | string |
Returns
RemoveAllPersonRelationshipsWithSourceIdAsync(Guid)
public Task<bool> RemoveAllPersonRelationshipsWithSourceIdAsync(Guid sourcePersonId)Parameters
| Name | Type |
|---|---|
| sourcePersonId | Guid |
Returns
RemoveAllPersonRelationshipsWithSourceIdAsync(string)
public Task<bool> RemoveAllPersonRelationshipsWithSourceIdAsync(string sourcePersonId)Parameters
| Name | Type |
|---|---|
| sourcePersonId | string |
Returns
RemoveAllPersonRelationshipsWithTargetIdAsync(Guid)
public Task<bool> RemoveAllPersonRelationshipsWithTargetIdAsync(Guid targetPersonId)Parameters
| Name | Type |
|---|---|
| targetPersonId | Guid |
Returns
RemoveAllPersonRelationshipsWithTargetIdAsync(string)
public Task<bool> RemoveAllPersonRelationshipsWithTargetIdAsync(string targetPersonId)Parameters
| Name | Type |
|---|---|
| targetPersonId | string |
Returns
RemoveAllResourceAuthorRelationsWithResourceIdAsync(Guid)
public Task<bool> RemoveAllResourceAuthorRelationsWithResourceIdAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
RemoveAllResourceAuthorRelationsWithResourceIdAsync(string)
public Task<bool> RemoveAllResourceAuthorRelationsWithResourceIdAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
RemoveAllResourceOrganisationRelationsWithResourceIdAsync(Guid)
public Task<bool> RemoveAllResourceOrganisationRelationsWithResourceIdAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
RemoveAllResourceOrganisationRelationsWithResourceIdAsync(string)
public Task<bool> RemoveAllResourceOrganisationRelationsWithResourceIdAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
RemoveAllResourceRegionRelationsWithResourceIdAsync(Guid)
public Task<bool> RemoveAllResourceRegionRelationsWithResourceIdAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
RemoveAllResourceRegionRelationsWithResourceIdAsync(string)
public Task<bool> RemoveAllResourceRegionRelationsWithResourceIdAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
RemoveAllResourceRelatedOrganisationRelationsWithResourceIdAsync(Guid)
public Task<bool> RemoveAllResourceRelatedOrganisationRelationsWithResourceIdAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
RemoveAllResourceRelatedOrganisationRelationsWithResourceIdAsync(string)
public Task<bool> RemoveAllResourceRelatedOrganisationRelationsWithResourceIdAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
RemoveAllResourceRelatedPersonRelationsWithResourceIdAsync(Guid)
public Task<bool> RemoveAllResourceRelatedPersonRelationsWithResourceIdAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
RemoveAllResourceRelatedPersonRelationsWithResourceIdAsync(string)
public Task<bool> RemoveAllResourceRelatedPersonRelationsWithResourceIdAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
RemoveAllResourceRelatedSourceRelationsWithResourceIdAsync(Guid)
public Task<bool> RemoveAllResourceRelatedSourceRelationsWithResourceIdAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
RemoveAllResourceRelatedSourceRelationsWithResourceIdAsync(string)
public Task<bool> RemoveAllResourceRelatedSourceRelationsWithResourceIdAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
RemoveAllResourceSourceRelationsWithResourceIdAsync(Guid)
public Task<bool> RemoveAllResourceSourceRelationsWithResourceIdAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
RemoveAllResourceSourceRelationsWithResourceIdAsync(string)
public Task<bool> RemoveAllResourceSourceRelationsWithResourceIdAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
RemoveAllResourceTagRelationsWithResourceIdAsync(Guid)
public Task<bool> RemoveAllResourceTagRelationsWithResourceIdAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
RemoveAllResourceTagRelationsWithResourceIdAsync(string)
public Task<bool> RemoveAllResourceTagRelationsWithResourceIdAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
RemoveAuthorFromAllResourcesAsync(Guid)
public Task<bool> RemoveAuthorFromAllResourcesAsync(Guid personId)Parameters
| Name | Type |
|---|---|
| personId | Guid |
Returns
RemoveAuthorFromAllResourcesAsync(string)
public Task<bool> RemoveAuthorFromAllResourcesAsync(string personId)Parameters
| Name | Type |
|---|---|
| personId | string |
Returns
RemoveAuthorFromResourceAsync(Guid, Guid)
public Task<bool> RemoveAuthorFromResourceAsync(Guid resourceId, Guid personId)Parameters
Returns
RemoveAuthorFromResourceAsync(string, Guid)
public Task<bool> RemoveAuthorFromResourceAsync(string resourceId, Guid personId)Parameters
Returns
RemoveAuthorFromResourceAsync(Guid, string)
public Task<bool> RemoveAuthorFromResourceAsync(Guid resourceId, string personId)Parameters
Returns
RemoveAuthorFromResourceAsync(string, string)
public Task<bool> RemoveAuthorFromResourceAsync(string resourceId, string personId)Parameters
Returns
RemoveOrganisationFromAllResourcesAsync(Guid)
public Task<bool> RemoveOrganisationFromAllResourcesAsync(Guid organisationId)Parameters
| Name | Type |
|---|---|
| organisationId | Guid |
Returns
RemoveOrganisationFromAllResourcesAsync(string)
public Task<bool> RemoveOrganisationFromAllResourcesAsync(string organisationId)Parameters
| Name | Type |
|---|---|
| organisationId | string |
Returns
RemoveOrganisationFromResourceAsync(Guid, Guid)
public Task<bool> RemoveOrganisationFromResourceAsync(Guid resourceId, Guid organisationId)Parameters
Returns
RemoveOrganisationFromResourceAsync(string, Guid)
public Task<bool> RemoveOrganisationFromResourceAsync(string resourceId, Guid organisationId)Parameters
Returns
RemoveOrganisationFromResourceAsync(Guid, string)
public Task<bool> RemoveOrganisationFromResourceAsync(Guid resourceId, string organisationId)Parameters
Returns
RemoveOrganisationFromResourceAsync(string, string)
public Task<bool> RemoveOrganisationFromResourceAsync(string resourceId, string organisationId)Parameters
Returns
RemoveOrganisationRelationshipAsync(Guid, Guid)
public Task<bool> RemoveOrganisationRelationshipAsync(Guid sourceOrganisationId, Guid targetOrganisationId)Parameters
Returns
RemoveOrganisationRelationshipAsync(Guid, string)
public Task<bool> RemoveOrganisationRelationshipAsync(Guid sourceOrganisationId, string targetOrganisationId)Parameters
Returns
RemoveOrganisationRelationshipAsync(string, Guid)
public Task<bool> RemoveOrganisationRelationshipAsync(string sourceOrganisationId, Guid targetOrganisationId)Parameters
Returns
RemoveOrganisationRelationshipAsync(string, string)
public Task<bool> RemoveOrganisationRelationshipAsync(string sourceOrganisationId, string targetOrganisationId)Parameters
Returns
RemovePersonFromAllOrganisationsAsync(Guid)
public Task<bool> RemovePersonFromAllOrganisationsAsync(Guid personId)Parameters
| Name | Type |
|---|---|
| personId | Guid |
Returns
RemovePersonFromAllOrganisationsAsync(string)
public Task<bool> RemovePersonFromAllOrganisationsAsync(string personId)Parameters
| Name | Type |
|---|---|
| personId | string |
Returns
RemovePersonFromOrganisationAsync(Guid, Guid)
public Task<bool> RemovePersonFromOrganisationAsync(Guid personId, Guid organisationId)Parameters
Returns
RemovePersonFromOrganisationAsync(Guid, string)
public Task<bool> RemovePersonFromOrganisationAsync(Guid personId, string organisationId)Parameters
Returns
RemovePersonFromOrganisationAsync(string, Guid)
public Task<bool> RemovePersonFromOrganisationAsync(string personId, Guid organisationId)Parameters
Returns
RemovePersonFromOrganisationAsync(string, string)
public Task<bool> RemovePersonFromOrganisationAsync(string personId, string organisationId)Parameters
Returns
RemovePersonRelationshipAsync(Guid, Guid)
public Task<bool> RemovePersonRelationshipAsync(Guid sourcePersonId, Guid targetPersonId)Parameters
Returns
RemovePersonRelationshipAsync(Guid, string)
public Task<bool> RemovePersonRelationshipAsync(Guid sourcePersonId, string targetPersonId)Parameters
Returns
RemovePersonRelationshipAsync(string, Guid)
public Task<bool> RemovePersonRelationshipAsync(string sourcePersonId, Guid targetPersonId)Parameters
Returns
RemovePersonRelationshipAsync(string, string)
public Task<bool> RemovePersonRelationshipAsync(string sourcePersonId, string targetPersonId)Parameters
Returns
RemoveRegionFromAllResourcesAsync(Guid)
public Task<bool> RemoveRegionFromAllResourcesAsync(Guid regionId)Parameters
| Name | Type |
|---|---|
| regionId | Guid |
Returns
RemoveRegionFromAllResourcesAsync(string)
public Task<bool> RemoveRegionFromAllResourcesAsync(string regionId)Parameters
| Name | Type |
|---|---|
| regionId | string |
Returns
RemoveRegionFromResourceAsync(Guid, Guid)
public Task<bool> RemoveRegionFromResourceAsync(Guid resourceId, Guid regionId)Parameters
Returns
RemoveRegionFromResourceAsync(string, Guid)
public Task<bool> RemoveRegionFromResourceAsync(string resourceId, Guid regionId)Parameters
Returns
RemoveRegionFromResourceAsync(Guid, string)
public Task<bool> RemoveRegionFromResourceAsync(Guid resourceId, string regionId)Parameters
Returns
RemoveRegionFromResourceAsync(string, string)
public Task<bool> RemoveRegionFromResourceAsync(string resourceId, string regionId)Parameters
Returns
RemoveRelatedOrganisationFromAllResourcesAsync(Guid)
public Task<bool> RemoveRelatedOrganisationFromAllResourcesAsync(Guid organisationId)Parameters
| Name | Type |
|---|---|
| organisationId | Guid |
Returns
RemoveRelatedOrganisationFromAllResourcesAsync(string)
public Task<bool> RemoveRelatedOrganisationFromAllResourcesAsync(string organisationId)Parameters
| Name | Type |
|---|---|
| organisationId | string |
Returns
RemoveRelatedOrganisationFromResourceAsync(Guid, Guid)
public Task<bool> RemoveRelatedOrganisationFromResourceAsync(Guid resourceId, Guid organisationId)Parameters
Returns
RemoveRelatedOrganisationFromResourceAsync(string, Guid)
public Task<bool> RemoveRelatedOrganisationFromResourceAsync(string resourceId, Guid organisationId)Parameters
Returns
RemoveRelatedOrganisationFromResourceAsync(Guid, string)
public Task<bool> RemoveRelatedOrganisationFromResourceAsync(Guid resourceId, string organisationId)Parameters
Returns
RemoveRelatedOrganisationFromResourceAsync(string, string)
public Task<bool> RemoveRelatedOrganisationFromResourceAsync(string resourceId, string organisationId)Parameters
Returns
RemoveRelatedPersonFromAllResourcesAsync(Guid)
public Task<bool> RemoveRelatedPersonFromAllResourcesAsync(Guid personId)Parameters
| Name | Type |
|---|---|
| personId | Guid |
Returns
RemoveRelatedPersonFromAllResourcesAsync(string)
public Task<bool> RemoveRelatedPersonFromAllResourcesAsync(string personId)Parameters
| Name | Type |
|---|---|
| personId | string |
Returns
RemoveRelatedPersonFromResourceAsync(Guid, Guid)
public Task<bool> RemoveRelatedPersonFromResourceAsync(Guid resourceId, Guid personId)Parameters
Returns
RemoveRelatedPersonFromResourceAsync(string, Guid)
public Task<bool> RemoveRelatedPersonFromResourceAsync(string resourceId, Guid personId)Parameters
Returns
RemoveRelatedPersonFromResourceAsync(Guid, string)
public Task<bool> RemoveRelatedPersonFromResourceAsync(Guid resourceId, string personId)Parameters
Returns
RemoveRelatedPersonFromResourceAsync(string, string)
public Task<bool> RemoveRelatedPersonFromResourceAsync(string resourceId, string personId)Parameters
Returns
RemoveRelatedSourceFromResourceAsync(Guid, string)
public Task<bool> RemoveRelatedSourceFromResourceAsync(Guid resourceId, string url)Parameters
Returns
RemoveRelatedSourceFromResourceAsync(string, string)
public Task<bool> RemoveRelatedSourceFromResourceAsync(string resourceId, string url)Parameters
Returns
RemoveResourceTypeFromResourceAsync(Guid)
public Task<bool> RemoveResourceTypeFromResourceAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
RemoveSourceFromResourceAsync(Guid, string)
public Task<bool> RemoveSourceFromResourceAsync(Guid resourceId, string url)Parameters
Returns
RemoveSourceFromResourceAsync(string, string)
public Task<bool> RemoveSourceFromResourceAsync(string resourceId, string url)Parameters
Returns
RemoveTagFromAllResourcesAsync(Guid)
public Task<bool> RemoveTagFromAllResourcesAsync(Guid tagId)Parameters
| Name | Type |
|---|---|
| tagId | Guid |
Returns
RemoveTagFromAllResourcesAsync(string)
public Task<bool> RemoveTagFromAllResourcesAsync(string tagId)Parameters
| Name | Type |
|---|---|
| tagId | string |
Returns
RemoveTagFromResourceAsync(Guid, Guid)
public Task<bool> RemoveTagFromResourceAsync(Guid resourceId, Guid tagId)Parameters
Returns
RemoveTagFromResourceAsync(string, Guid)
public Task<bool> RemoveTagFromResourceAsync(string resourceId, Guid tagId)Parameters
Returns
RemoveTagFromResourceAsync(Guid, string)
public Task<bool> RemoveTagFromResourceAsync(Guid resourceId, string tagId)Parameters
Returns
RemoveTagFromResourceAsync(string, string)
public Task<bool> RemoveTagFromResourceAsync(string resourceId, string tagId)Parameters
Returns
ResourceAuthorRelationCountAsync(Expression<Func<ResourceAuthorRelation, bool>>?)
public Task<int> ResourceAuthorRelationCountAsync(Expression<Func<ResourceAuthorRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceAuthorRelation> |
Returns
ResourceAuthorRelationExistsAsync(Expression<Func<ResourceAuthorRelation, bool>>)
public Task<bool> ResourceAuthorRelationExistsAsync(Expression<Func<ResourceAuthorRelation, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceAuthorRelation> |
Returns
ResourceCountAsync(Expression<Func<Resource, bool>>?)
public Task<int> ResourceCountAsync(Expression<Func<Resource, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Resource> |
Returns
ResourceExistsAsync(Guid)
public Task<bool> ResourceExistsAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
ResourceExistsAsync(string)
public Task<bool> ResourceExistsAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
ResourceExistsAsync(Expression<Func<Resource, bool>>)
public Task<bool> ResourceExistsAsync(Expression<Func<Resource, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Resource> |
Returns
ResourceOrganisationRelationCountAsync(Expression<Func<ResourceOrganisationRelation, bool>>?)
public Task<int> ResourceOrganisationRelationCountAsync(Expression<Func<ResourceOrganisationRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceOrganisationRelation> |
Returns
ResourceOrganisationRelationExistsAsync(Expression<Func<ResourceOrganisationRelation, bool>>)
public Task<bool> ResourceOrganisationRelationExistsAsync(Expression<Func<ResourceOrganisationRelation, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceOrganisationRelation> |
Returns
ResourceRegionRelationCountAsync(Expression<Func<ResourceRegionRelation, bool>>?)
public Task<int> ResourceRegionRelationCountAsync(Expression<Func<ResourceRegionRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRegionRelation> |
Returns
ResourceRegionRelationExistsAsync(Expression<Func<ResourceRegionRelation, bool>>)
public Task<bool> ResourceRegionRelationExistsAsync(Expression<Func<ResourceRegionRelation, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRegionRelation> |
Returns
ResourceRelatedOrganisationRelationCountAsync(Expression<Func<ResourceRelatedOrganisationRelation, bool>>?)
public Task<int> ResourceRelatedOrganisationRelationCountAsync(Expression<Func<ResourceRelatedOrganisationRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedOrganisationRelation> |
Returns
ResourceRelatedOrganisationRelationExistsAsync(Expression<Func<ResourceRelatedOrganisationRelation, bool>>)
public Task<bool> ResourceRelatedOrganisationRelationExistsAsync(Expression<Func<ResourceRelatedOrganisationRelation, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedOrganisationRelation> |
Returns
ResourceRelatedPersonRelationsCountAsync(Expression<Func<ResourceRelatedPersonRelation, bool>>?)
public Task<int> ResourceRelatedPersonRelationsCountAsync(Expression<Func<ResourceRelatedPersonRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedPersonRelation> |
Returns
ResourceRelatedPersonRelationsExistsAsync(Expression<Func<ResourceRelatedPersonRelation, bool>>)
public Task<bool> ResourceRelatedPersonRelationsExistsAsync(Expression<Func<ResourceRelatedPersonRelation, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedPersonRelation> |
Returns
ResourceRelatedSourceRelationCountAsync(Expression<Func<ResourceRelatedSourceRelation, bool>>?)
public Task<int> ResourceRelatedSourceRelationCountAsync(Expression<Func<ResourceRelatedSourceRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedSourceRelation> |
Returns
ResourceRelatedSourceRelationExistsAsync(Expression<Func<ResourceRelatedSourceRelation, bool>>)
public Task<bool> ResourceRelatedSourceRelationExistsAsync(Expression<Func<ResourceRelatedSourceRelation, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceRelatedSourceRelation> |
Returns
ResourceSourceRelationCountAsync(Expression<Func<ResourceSourceRelation, bool>>?)
public Task<int> ResourceSourceRelationCountAsync(Expression<Func<ResourceSourceRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceSourceRelation> |
Returns
ResourceSourceRelationExistsAsync(Expression<Func<ResourceSourceRelation, bool>>)
public Task<bool> ResourceSourceRelationExistsAsync(Expression<Func<ResourceSourceRelation, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceSourceRelation> |
Returns
ResourceTagRelationCountAsync(Expression<Func<ResourceTagRelation, bool>>?)
public Task<int> ResourceTagRelationCountAsync(Expression<Func<ResourceTagRelation, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceTagRelation> |
Returns
ResourceTagRelationExistsAsync(Expression<Func<ResourceTagRelation, bool>>)
public Task<bool> ResourceTagRelationExistsAsync(Expression<Func<ResourceTagRelation, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceTagRelation> |
Returns
ResourceTypeCountAsync(Expression<Func<ResourceType, bool>>?)
public Task<int> ResourceTypeCountAsync(Expression<Func<ResourceType, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceType> |
Returns
ResourceTypeExistsAsync(Guid)
public Task<bool> ResourceTypeExistsAsync(Guid resourceTypeId)Parameters
| Name | Type |
|---|---|
| resourceTypeId | Guid |
Returns
ResourceTypeExistsAsync(string)
public Task<bool> ResourceTypeExistsAsync(string resourceTypeId)Parameters
| Name | Type |
|---|---|
| resourceTypeId | string |
Returns
ResourceTypeExistsAsync(Expression<Func<ResourceType, bool>>)
public Task<bool> ResourceTypeExistsAsync(Expression<Func<ResourceType, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, ResourceType> |
Returns
Rollback()
Rolls back the current database transaction
public Task Rollback()Returns
| Type |
|---|
Task |
SearchResourceGridAsync(GridRequest)
Searches all resources, persons and organisations using the given parameters
public Task<GridSearchResult> SearchResourceGridAsync(GridRequest request)Parameters
| Name | Type | Description |
|---|---|---|
| request | GridRequest | The request DTO |
Returns
| Type | Description |
|---|---|
Task<GridSearchResult> | The result of the search |
TagCountAsync(Expression<Func<Tag, bool>>?)
public Task<int> TagCountAsync(Expression<Func<Tag, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Tag> |
Returns
TagExistsAsync(Guid)
public Task<bool> TagExistsAsync(Guid tagId)Parameters
| Name | Type |
|---|---|
| tagId | Guid |
Returns
TagExistsAsync(string)
public Task<bool> TagExistsAsync(string tagId)Parameters
| Name | Type |
|---|---|
| tagId | string |
Returns
TagExistsAsync(Expression<Func<Tag, bool>>)
public Task<bool> TagExistsAsync(Expression<Func<Tag, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, Tag> |
Returns
TrashOrganisationAsync(Guid)
public Task<bool> TrashOrganisationAsync(Guid Id)Parameters
| Name | Type |
|---|---|
| Id | Guid |
Returns
TrashOrganisationAsync(string)
public Task<bool> TrashOrganisationAsync(string Id)Parameters
| Name | Type |
|---|---|
| Id | string |
Returns
TrashPersonAsync(Guid)
public Task<bool> TrashPersonAsync(Guid Id)Parameters
| Name | Type |
|---|---|
| Id | Guid |
Returns
TrashPersonAsync(string)
public Task<bool> TrashPersonAsync(string Id)Parameters
| Name | Type |
|---|---|
| Id | string |
Returns
TrashResourceAsync(Guid)
public Task<bool> TrashResourceAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
TrashResourceAsync(string)
public Task<bool> TrashResourceAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
UntrashOrganisationAsync(Guid)
public Task<bool> UntrashOrganisationAsync(Guid Id)Parameters
| Name | Type |
|---|---|
| Id | Guid |
Returns
UntrashOrganisationAsync(string)
public Task<bool> UntrashOrganisationAsync(string Id)Parameters
| Name | Type |
|---|---|
| Id | string |
Returns
UntrashPersonAsync(Guid)
public Task<bool> UntrashPersonAsync(Guid Id)Parameters
| Name | Type |
|---|---|
| Id | Guid |
Returns
UntrashPersonAsync(string)
public Task<bool> UntrashPersonAsync(string Id)Parameters
| Name | Type |
|---|---|
| Id | string |
Returns
UntrashResourceAsync(Guid)
public Task<bool> UntrashResourceAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
UntrashResourceAsync(string)
public Task<bool> UntrashResourceAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
UpdateAudioMetadataAsync<T>(Guid, Expression<Func<AudioMetadata, T>>, T)
public Task<bool> UpdateAudioMetadataAsync<T>(Guid resourceId, Expression<Func<AudioMetadata, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| resourceId | Guid | |
| propertySelector | Expression<Func, AudioMetadata> | `newValue` T |
Returns
Type Parameters
T
UpdateAudioMetadataAsync<T>(string, Expression<Func<AudioMetadata, T>>, T)
public Task<bool> UpdateAudioMetadataAsync<T>(string id, Expression<Func<AudioMetadata, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| id | string | |
| propertySelector | Expression<Func, AudioMetadata> | `newValue` T |
Returns
Type Parameters
T
UpdateAudioMetadataAsync<T>(Expression<Func<AudioMetadata, bool>>, Expression<Func<AudioMetadata, T>>, T)
public Task<bool> UpdateAudioMetadataAsync<T>(Expression<Func<AudioMetadata, bool>> predicate, Expression<Func<AudioMetadata, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| predicate | Expression<Func, bool, AudioMetadata> | |
| propertySelector | Expression<Func, AudioMetadata> | `newValue` T |
Returns
Type Parameters
T
UpdateDocumentMetadataAsync<T>(Guid, Expression<Func<DocumentMetadata, T>>, T)
public Task<bool> UpdateDocumentMetadataAsync<T>(Guid resourceId, Expression<Func<DocumentMetadata, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| resourceId | Guid | |
| propertySelector | Expression<Func, DocumentMetadata> | `newValue` T |
Returns
Type Parameters
T
UpdateDocumentMetadataAsync<T>(string, Expression<Func<DocumentMetadata, T>>, T)
public Task<bool> UpdateDocumentMetadataAsync<T>(string id, Expression<Func<DocumentMetadata, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| id | string | |
| propertySelector | Expression<Func, DocumentMetadata> | `newValue` T |
Returns
Type Parameters
T
UpdateDocumentMetadataAsync<T>(Expression<Func<DocumentMetadata, bool>>, Expression<Func<DocumentMetadata, T>>, T)
public Task<bool> UpdateDocumentMetadataAsync<T>(Expression<Func<DocumentMetadata, bool>> predicate, Expression<Func<DocumentMetadata, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| predicate | Expression<Func, bool, DocumentMetadata> | |
| propertySelector | Expression<Func, DocumentMetadata> | `newValue` T |
Returns
Type Parameters
T
UpdateOrganisationAsync<T>(Guid, Expression<Func<Organisation, T>>, T)
public Task<bool> UpdateOrganisationAsync<T>(Guid id, Expression<Func<Organisation, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| id | Guid | |
| propertySelector | Expression<Func, Organisation> | `newValue` T |
Returns
Type Parameters
T
UpdateOrganisationAsync<T>(string, Expression<Func<Organisation, T>>, T)
public Task<bool> UpdateOrganisationAsync<T>(string id, Expression<Func<Organisation, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| id | string | |
| propertySelector | Expression<Func, Organisation> | `newValue` T |
Returns
Type Parameters
T
UpdateOrganisationAsync<T>(Expression<Func<Organisation, bool>>, Expression<Func<Organisation, T>>, T)
public Task<bool> UpdateOrganisationAsync<T>(Expression<Func<Organisation, bool>> predicate, Expression<Func<Organisation, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| predicate | Expression<Func, bool, Organisation> | |
| propertySelector | Expression<Func, Organisation> | `newValue` T |
Returns
Type Parameters
T
UpdatePersonAsync<T>(Guid, Expression<Func<Person, T>>, T)
public Task<bool> UpdatePersonAsync<T>(Guid id, Expression<Func<Person, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| id | Guid | |
| propertySelector | Expression<Func, Person> | `newValue` T |
Returns
Type Parameters
T
UpdatePersonAsync<T>(string, Expression<Func<Person, T>>, T)
public Task<bool> UpdatePersonAsync<T>(string id, Expression<Func<Person, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| id | string | |
| propertySelector | Expression<Func, Person> | `newValue` T |
Returns
Type Parameters
T
UpdatePersonAsync<T>(Expression<Func<Person, bool>>, Expression<Func<Person, T>>, T)
public Task<bool> UpdatePersonAsync<T>(Expression<Func<Person, bool>> predicate, Expression<Func<Person, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| predicate | Expression<Func, bool, Person> | |
| propertySelector | Expression<Func, Person> | `newValue` T |
Returns
Type Parameters
T
UpdatePropertyAsync<T, TProperty>(DbSet<T>, Expression<Func<T, bool>>, Expression<Func<T, TProperty>>, TProperty)
protected Task<int> UpdatePropertyAsync<T, TProperty>(DbSet<T> dbSet, Expression<Func<T, bool>> predicate, Expression<Func<T, TProperty>> propertySelector, TProperty newValue) where T : classParameters
| Name | Type | Description |
|---|---|---|
| dbSet | DbSet | |
| predicate | Expression<Func, bool> | |
| propertySelector | Expression<Func> | `newValue` TProperty |
Returns
Type Parameters
T
TProperty
UpdateRegionAsync<T>(Guid, Expression<Func<Region, T>>, T)
public Task<bool> UpdateRegionAsync<T>(Guid id, Expression<Func<Region, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| id | Guid | |
| propertySelector | Expression<Func, Region> | `newValue` T |
Returns
Type Parameters
T
UpdateRegionAsync<T>(string, Expression<Func<Region, T>>, T)
public Task<bool> UpdateRegionAsync<T>(string id, Expression<Func<Region, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| id | string | |
| propertySelector | Expression<Func, Region> | `newValue` T |
Returns
Type Parameters
T
UpdateRegionAsync<T>(Expression<Func<Region, bool>>, Expression<Func<Region, T>>, T)
public Task<bool> UpdateRegionAsync<T>(Expression<Func<Region, bool>> predicate, Expression<Func<Region, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| predicate | Expression<Func, bool, Region> | |
| propertySelector | Expression<Func, Region> | `newValue` T |
Returns
Type Parameters
T
UpdateRelationInOrganisationRelationshipAsync(Guid, string, Guid)
public Task<bool> UpdateRelationInOrganisationRelationshipAsync(Guid sourceOrganisationId, string newRelation, Guid targetOrganisationId)Parameters
Returns
UpdateRelationInOrganisationRelationshipAsync(Guid, string, string)
public Task<bool> UpdateRelationInOrganisationRelationshipAsync(Guid sourceOrganisationId, string newRelation, string targetOrganisationId)Parameters
Returns
UpdateRelationInOrganisationRelationshipAsync(string, string, Guid)
public Task<bool> UpdateRelationInOrganisationRelationshipAsync(string sourceOrganisationId, string newRelation, Guid targetOrganisationId)Parameters
Returns
UpdateRelationInOrganisationRelationshipAsync(string, string, string)
public Task<bool> UpdateRelationInOrganisationRelationshipAsync(string sourceOrganisationId, string newRelation, string targetOrganisationId)Parameters
Returns
UpdateRelationInPersonRelationshipAsync(Guid, string, Guid)
public Task<bool> UpdateRelationInPersonRelationshipAsync(Guid sourcePersonId, string newRelation, Guid targetPersonId)Parameters
Returns
UpdateRelationInPersonRelationshipAsync(Guid, string, string)
public Task<bool> UpdateRelationInPersonRelationshipAsync(Guid sourcePersonId, string newRelation, string targetPersonId)Parameters
Returns
UpdateRelationInPersonRelationshipAsync(string, string, Guid)
public Task<bool> UpdateRelationInPersonRelationshipAsync(string sourcePersonId, string newRelation, Guid targetPersonId)Parameters
Returns
UpdateRelationInPersonRelationshipAsync(string, string, string)
public Task<bool> UpdateRelationInPersonRelationshipAsync(string sourcePersonId, string newRelation, string targetPersonId)Parameters
Returns
UpdateResourceAsync<T>(Guid, Expression<Func<Resource, T>>, T)
public Task<bool> UpdateResourceAsync<T>(Guid id, Expression<Func<Resource, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| id | Guid | |
| propertySelector | Expression<Func, Resource> | `newValue` T |
Returns
Type Parameters
T
UpdateResourceAsync<T>(string, Expression<Func<Resource, T>>, T)
public Task<bool> UpdateResourceAsync<T>(string id, Expression<Func<Resource, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| id | string | |
| propertySelector | Expression<Func, Resource> | `newValue` T |
Returns
Type Parameters
T
UpdateResourceAsync<T>(Expression<Func<Resource, bool>>, Expression<Func<Resource, T>>, T)
public Task<bool> UpdateResourceAsync<T>(Expression<Func<Resource, bool>> predicate, Expression<Func<Resource, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| predicate | Expression<Func, bool, Resource> | |
| propertySelector | Expression<Func, Resource> | `newValue` T |
Returns
Type Parameters
T
UpdateResourceTypeAsync<T>(Guid, Expression<Func<ResourceType, T>>, T)
public Task<bool> UpdateResourceTypeAsync<T>(Guid id, Expression<Func<ResourceType, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| id | Guid | |
| propertySelector | Expression<Func, ResourceType> | `newValue` T |
Returns
Type Parameters
T
UpdateResourceTypeAsync<T>(string, Expression<Func<ResourceType, T>>, T)
public Task<bool> UpdateResourceTypeAsync<T>(string id, Expression<Func<ResourceType, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| id | string | |
| propertySelector | Expression<Func, ResourceType> | `newValue` T |
Returns
Type Parameters
T
UpdateResourceTypeAsync<T>(Expression<Func<ResourceType, bool>>, Expression<Func<ResourceType, T>>, T)
public Task<bool> UpdateResourceTypeAsync<T>(Expression<Func<ResourceType, bool>> predicate, Expression<Func<ResourceType, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| predicate | Expression<Func, bool, ResourceType> | |
| propertySelector | Expression<Func, ResourceType> | `newValue` T |
Returns
Type Parameters
T
UpdateRoleInPersonOrganisationRelationAsync(Guid, string, Guid)
public Task<bool> UpdateRoleInPersonOrganisationRelationAsync(Guid personId, string newRole, Guid organisationId)Parameters
Returns
UpdateRoleInPersonOrganisationRelationAsync(Guid, string, string)
public Task<bool> UpdateRoleInPersonOrganisationRelationAsync(Guid personId, string newRole, string organisationId)Parameters
Returns
UpdateRoleInPersonOrganisationRelationAsync(string, string, Guid)
public Task<bool> UpdateRoleInPersonOrganisationRelationAsync(string personId, string newRole, Guid organisationId)Parameters
Returns
UpdateRoleInPersonOrganisationRelationAsync(string, string, string)
public Task<bool> UpdateRoleInPersonOrganisationRelationAsync(string personId, string newRole, string organisationId)Parameters
Returns
UpdateRoleInResourceOrganisationRelationAsync(Guid, Guid, string)
public Task<bool> UpdateRoleInResourceOrganisationRelationAsync(Guid resourceId, Guid organisationId, string newRole)Parameters
Returns
UpdateRoleInResourceOrganisationRelationAsync(Guid, string, string)
public Task<bool> UpdateRoleInResourceOrganisationRelationAsync(Guid resourceId, string organisationId, string newRole)Parameters
Returns
UpdateRoleInResourceOrganisationRelationAsync(string, Guid, string)
public Task<bool> UpdateRoleInResourceOrganisationRelationAsync(string resourceId, Guid organisationId, string newRole)Parameters
Returns
UpdateRoleInResourceOrganisationRelationAsync(string, string, string)
public Task<bool> UpdateRoleInResourceOrganisationRelationAsync(string resourceId, string organisationId, string newRole)Parameters
Returns
UpdateRoleInResourceRelatedOrganisationRelationAsync(Guid, Guid, string)
public Task<bool> UpdateRoleInResourceRelatedOrganisationRelationAsync(Guid resourceId, Guid organisationId, string newRole)Parameters
Returns
UpdateRoleInResourceRelatedOrganisationRelationAsync(Guid, string, string)
public Task<bool> UpdateRoleInResourceRelatedOrganisationRelationAsync(Guid resourceId, string organisationId, string newRole)Parameters
Returns
UpdateRoleInResourceRelatedOrganisationRelationAsync(string, Guid, string)
public Task<bool> UpdateRoleInResourceRelatedOrganisationRelationAsync(string resourceId, Guid organisationId, string newRole)Parameters
Returns
UpdateRoleInResourceRelatedOrganisationRelationAsync(string, string, string)
public Task<bool> UpdateRoleInResourceRelatedOrganisationRelationAsync(string resourceId, string organisationId, string newRole)Parameters
Returns
UpdateRoleInResourceRelatedPersonRelationAsync(Guid, Guid, string)
public Task<bool> UpdateRoleInResourceRelatedPersonRelationAsync(Guid resourceId, Guid personId, string newRole)Parameters
Returns
UpdateRoleInResourceRelatedPersonRelationAsync(Guid, string, string)
public Task<bool> UpdateRoleInResourceRelatedPersonRelationAsync(Guid resourceId, string personId, string newRole)Parameters
Returns
UpdateRoleInResourceRelatedPersonRelationAsync(string, Guid, string)
public Task<bool> UpdateRoleInResourceRelatedPersonRelationAsync(string resourceId, Guid personId, string newRole)Parameters
Returns
UpdateRoleInResourceRelatedPersonRelationAsync(string, string, string)
public Task<bool> UpdateRoleInResourceRelatedPersonRelationAsync(string resourceId, string personId, string newRole)Parameters
Returns
UpdateTagAsync<T>(Guid, Expression<Func<Tag, T>>, T)
public Task<bool> UpdateTagAsync<T>(Guid id, Expression<Func<Tag, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| id | Guid | |
| propertySelector | Expression<Func, Tag> | `newValue` T |
Returns
Type Parameters
T
UpdateTagAsync<T>(string, Expression<Func<Tag, T>>, T)
public Task<bool> UpdateTagAsync<T>(string id, Expression<Func<Tag, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| id | string | |
| propertySelector | Expression<Func, Tag> | `newValue` T |
Returns
Type Parameters
T
UpdateTagAsync<T>(Expression<Func<Tag, bool>>, Expression<Func<Tag, T>>, T)
public Task<bool> UpdateTagAsync<T>(Expression<Func<Tag, bool>> predicate, Expression<Func<Tag, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| predicate | Expression<Func, bool, Tag> | |
| propertySelector | Expression<Func, Tag> | `newValue` T |
Returns
Type Parameters
T
UpdateVideoMetadataAsync<T>(Guid, Expression<Func<VideoMetadata, T>>, T)
public Task<bool> UpdateVideoMetadataAsync<T>(Guid resourceId, Expression<Func<VideoMetadata, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| resourceId | Guid | |
| propertySelector | Expression<Func, VideoMetadata> | `newValue` T |
Returns
Type Parameters
T
UpdateVideoMetadataAsync<T>(string, Expression<Func<VideoMetadata, T>>, T)
public Task<bool> UpdateVideoMetadataAsync<T>(string id, Expression<Func<VideoMetadata, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| id | string | |
| propertySelector | Expression<Func, VideoMetadata> | `newValue` T |
Returns
Type Parameters
T
UpdateVideoMetadataAsync<T>(Expression<Func<VideoMetadata, bool>>, Expression<Func<VideoMetadata, T>>, T)
public Task<bool> UpdateVideoMetadataAsync<T>(Expression<Func<VideoMetadata, bool>> predicate, Expression<Func<VideoMetadata, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| predicate | Expression<Func, bool, VideoMetadata> | |
| propertySelector | Expression<Func, VideoMetadata> | `newValue` T |
Returns
Type Parameters
T
UpdateWebsiteMetadataAsync<T>(Guid, Expression<Func<WebsiteMetadata, T>>, T)
public Task<bool> UpdateWebsiteMetadataAsync<T>(Guid resourceId, Expression<Func<WebsiteMetadata, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| resourceId | Guid | |
| propertySelector | Expression<Func, WebsiteMetadata> | `newValue` T |
Returns
Type Parameters
T
UpdateWebsiteMetadataAsync<T>(string, Expression<Func<WebsiteMetadata, T>>, T)
public Task<bool> UpdateWebsiteMetadataAsync<T>(string id, Expression<Func<WebsiteMetadata, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| id | string | |
| propertySelector | Expression<Func, WebsiteMetadata> | `newValue` T |
Returns
Type Parameters
T
UpdateWebsiteMetadataAsync<T>(Expression<Func<WebsiteMetadata, bool>>, Expression<Func<WebsiteMetadata, T>>, T)
public Task<bool> UpdateWebsiteMetadataAsync<T>(Expression<Func<WebsiteMetadata, bool>> predicate, Expression<Func<WebsiteMetadata, T>> propertySelector, T newValue)Parameters
| Name | Type | Description |
|---|---|---|
| predicate | Expression<Func, bool, WebsiteMetadata> | |
| propertySelector | Expression<Func, WebsiteMetadata> | `newValue` T |
Returns
Type Parameters
T
VideoMetadataCountAsync(Expression<Func<VideoMetadata, bool>>?)
public Task<int> VideoMetadataCountAsync(Expression<Func<VideoMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, VideoMetadata> |
Returns
VideoMetadataExistsAsync(Guid)
public Task<bool> VideoMetadataExistsAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
VideoMetadataExistsAsync(string)
public Task<bool> VideoMetadataExistsAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
VideoMetadataExistsAsync(Expression<Func<VideoMetadata, bool>>)
public Task<bool> VideoMetadataExistsAsync(Expression<Func<VideoMetadata, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, VideoMetadata> |
Returns
WebsiteMetadataCountAsync(Expression<Func<WebsiteMetadata, bool>>?)
public Task<int> WebsiteMetadataCountAsync(Expression<Func<WebsiteMetadata, bool>>? predicate = null)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, WebsiteMetadata> |
Returns
WebsiteMetadataExistsAsync(Guid)
public Task<bool> WebsiteMetadataExistsAsync(Guid resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | Guid |
Returns
WebsiteMetadataExistsAsync(string)
public Task<bool> WebsiteMetadataExistsAsync(string resourceId)Parameters
| Name | Type |
|---|---|
| resourceId | string |
Returns
WebsiteMetadataExistsAsync(Expression<Func<WebsiteMetadata, bool>>)
public Task<bool> WebsiteMetadataExistsAsync(Expression<Func<WebsiteMetadata, bool>> predicate)Parameters
| Name | Type |
|---|---|
| predicate | Expression<Func, bool, WebsiteMetadata> |
